diff mbox

[U-Boot] mmc: rockchip: the non-removable property must point to emmc

Message ID 1452231959-16447-1-git-send-email-hl@rock-chips.com
State Superseded
Headers show

Commit Message

Lin Huang Jan. 8, 2016, 5:45 a.m. UTC
the non-removable property point to sdcard before, it is wrong,
it must point to emmc, correct it.

Signed-off-by: Lin Huang <hl@rock-chips.com>
---
 drivers/mmc/rockchip_dw_mmc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/mmc/rockchip_dw_mmc.c b/drivers/mmc/rockchip_dw_mmc.c
index aeaec6c..870b2fe 100644
--- a/drivers/mmc/rockchip_dw_mmc.c
+++ b/drivers/mmc/rockchip_dw_mmc.c
@@ -51,8 +51,8 @@  static int rockchip_dwmmc_ofdata_to_platdata(struct udevice *dev)
 	host->priv = dev;
 
 	/* use non-removeable as sdcard and emmc as judgement */
-	if (fdtdec_get_bool(gd->fdt_blob, dev->of_offset, "non-removable"))
-		host->dev_index = 1;
+	if (!fdtdec_get_bool(gd->fdt_blob, dev->of_offset, "non-removable"))
+		host->dev_index = 0;
 
 	return 0;
 }