Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b06bf9a9 authored by Deepak Sikri's avatar Deepak Sikri Committed by Linus Walleij
Browse files

pinctrl: SPEAr320: Correct pad mux entries for rmii/smii



pin entries of rmii and smii are interchanged by mistake. Fix it.

Signed-off-by: default avatarDeepak Sikri <deepak.sikri@st.com>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent a7780055
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2960,9 +2960,9 @@ static struct spear_function mii2_function = {
};

/* 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 };
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[] = {
	{
		.reg = PMX_CONFIG_REG,