mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-03 11:13:56 +08:00
pinctrl: SPEAr320: Correct pad mux entries for rmii/smii
pin entries of rmii and smii are interchanged by mistake. Fix it. Signed-off-by: Deepak Sikri <deepak.sikri@st.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
a778005589
commit
b06bf9a905
@ -2960,9 +2960,9 @@ static struct spear_function mii2_function = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* Pad multiplexing for cadence mii 1_2 as smii or rmii device */
|
/* Pad multiplexing for cadence mii 1_2 as smii or rmii device */
|
||||||
static const unsigned smii0_1_pins[] = { 10, 11, 13, 14, 15, 16, 17, 18, 19, 20,
|
static const unsigned rmii0_1_pins[] = { 10, 11, 13, 14, 15, 16, 17, 18, 19, 20,
|
||||||
21, 22, 23, 24, 25, 26, 27 };
|
21, 22, 23, 24, 25, 26, 27 };
|
||||||
static const unsigned rmii0_1_pins[] = { 10, 11, 21, 22, 23, 24, 25, 26, 27 };
|
static const unsigned smii0_1_pins[] = { 10, 11, 21, 22, 23, 24, 25, 26, 27 };
|
||||||
static struct spear_muxreg mii0_1_muxreg[] = {
|
static struct spear_muxreg mii0_1_muxreg[] = {
|
||||||
{
|
{
|
||||||
.reg = PMX_CONFIG_REG,
|
.reg = PMX_CONFIG_REG,
|
||||||
|
Loading…
Reference in New Issue
Block a user