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

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
...@@ -2960,9 +2960,9 @@ static struct spear_function mii2_function = { ...@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment