diff mbox

[U-Boot,3/3] ls102xa: spl: fix the macro name of MMC mode

Message ID 1461721491-19254-1-git-send-email-Qianyu.Gong@nxp.com
State Accepted
Commit 56747bfdbd6f2c5bc391d0c9d5eb20a6a2d50505
Delegated to: York Sun
Headers show

Commit Message

Gong Qianyu April 27, 2016, 1:44 a.m. UTC
There is no MODE_FAT but MODE_FS. Fix it.

Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
---
 arch/arm/cpu/armv7/ls102xa/spl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

York Sun May 24, 2016, 5:17 p.m. UTC | #1
On 04/26/2016 06:54 PM, Gong Qianyu wrote:
> There is no MODE_FAT but MODE_FS. Fix it.
> 
> Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
> ---
>  arch/arm/cpu/armv7/ls102xa/spl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Minor adjustment to commit message.
Applied to u-boot-fsl-qoriq master, awaiting upstream.

Thanks.

York
diff mbox

Patch

diff --git a/arch/arm/cpu/armv7/ls102xa/spl.c b/arch/arm/cpu/armv7/ls102xa/spl.c
index 1dfbf54..0289058 100644
--- a/arch/arm/cpu/armv7/ls102xa/spl.c
+++ b/arch/arm/cpu/armv7/ls102xa/spl.c
@@ -20,7 +20,7 @@  u32 spl_boot_mode(void)
 	switch (spl_boot_device()) {
 	case BOOT_DEVICE_MMC1:
 #ifdef CONFIG_SPL_FAT_SUPPORT
-		return MMCSD_MODE_FAT;
+		return MMCSD_MODE_FS;
 #else
 		return MMCSD_MODE_RAW;
 #endif