From: Andre Przywara Date: Tue, 30 Nov 2021 23:18:54 +0000 (+0000) Subject: sunxi: dts: Fix typoed eMMC check X-Git-Tag: v2022.01~23^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e32dad292ae1422eba1403964918eed220061769;p=platform%2Fkernel%2Fu-boot.git sunxi: dts: Fix typoed eMMC check Commit 03510bf62149 ("sunxi: only include alias for eMMC when mmc2 used") protected the eMMC alias in U-Boot's DT stub the with the associated Kconfig symbol, but was actually using the wrong name. Fix the name of the symbol to match what's defined in Kconfig and what the defconfig files actually use. Fixes: 03510bf62149 ("sunxi: only include alias for eMMC when mmc2 used") Signed-off-by: Andre Przywara Reported-by: 5kft@5kft.org Reviewed-by: Icenowy Zheng --- diff --git a/arch/arm/dts/sunxi-u-boot.dtsi b/arch/arm/dts/sunxi-u-boot.dtsi index b7244c1..f2d7361 100644 --- a/arch/arm/dts/sunxi-u-boot.dtsi +++ b/arch/arm/dts/sunxi-u-boot.dtsi @@ -13,7 +13,7 @@ / { aliases { mmc0 = &mmc0; -#if CONFIG_MMC_SUNXI_EXTRA_SLOT == 2 +#if CONFIG_MMC_SUNXI_SLOT_EXTRA == 2 mmc1 = &mmc2; #endif };