diff options
author | Tony Lindgren <tony@atomide.com> | 2021-03-24 14:10:32 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2021-03-24 14:10:32 +0100 |
commit | a1ebdb3741993f853865d1bd8f77881916ad53a7 (patch) | |
tree | a41c548836de4ec3eb7b3a15f15bfee99d3da20d /arch | |
parent | ARM: OMAP2+: Fix warning for omap_init_time_of() (diff) | |
download | linux-a1ebdb3741993f853865d1bd8f77881916ad53a7.tar.xz linux-a1ebdb3741993f853865d1bd8f77881916ad53a7.zip |
ARM: dts: Fix swapped mmc order for omap3
Also some omap3 devices like n900 seem to have eMMC and micro-sd swapped
around with commit 21b2cec61c04 ("mmc: Set PROBE_PREFER_ASYNCHRONOUS for
drivers that existed in v4.4").
Let's fix the issue with aliases as discussed on the mailing lists. While
the mmc aliases should be board specific, let's first fix the issue with
minimal changes.
Cc: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: Peter Ujfalusi <peter.ujfalusi@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/omap3.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index 9dcae1f2bc99..c5b9da0d7e6c 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi @@ -24,6 +24,9 @@ i2c0 = &i2c1; i2c1 = &i2c2; i2c2 = &i2c3; + mmc0 = &mmc1; + mmc1 = &mmc2; + mmc2 = &mmc3; serial0 = &uart1; serial1 = &uart2; serial2 = &uart3; |