diff options
author | Andrew Bradford <andrew@bradfordembedded.com> | 2012-10-01 05:06:52 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-23 08:33:17 -0700 |
commit | 669681104daac2bfbdc733d7426b19e358eced8a (patch) | |
tree | 69e650ccb25e034c0e56bf8fb78841d7e3847f32 /include/configs/mx53loco.h | |
parent | 391a741162861a887fd226e53048aad2daed62fd (diff) |
configs: Fix usage of mmc rescan
Fix usage of 'mmc rescan' by many configs. Proper use is
'mmc dev ${mmcdev}; mmc rescan' to set the mmc device and then rescan
the device. 'mmc rescan' itself does not take any arguments.
Signed-off-by: Andrew Bradford <andrew@bradfordembedded.com>
Diffstat (limited to 'include/configs/mx53loco.h')
-rw-r--r-- | include/configs/mx53loco.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 6a6aaa1923f..55efeb741c3 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -140,7 +140,7 @@ "dhcp ${uimage}; bootm\0" \ #define CONFIG_BOOTCOMMAND \ - "if mmc rescan ${mmcdev}; then " \ + "mmc dev ${mmcdev}; if mmc rescan; then " \ "if run loadbootscript; then " \ "run bootscript; " \ "else " \ |