diff mbox

[U-Boot,02/12] arm: s3c24xx: Fix incorrect CONFIG_SYS_S3C2410_NAND_HWECC name

Message ID 1405989293-6629-2-git-send-email-marex@denx.de
State Superseded
Headers show

Commit Message

Marek Vasut July 22, 2014, 12:34 a.m. UTC
The correct name of this symbol is CONFIG_S3C2410_NAND_HWECC , the
_SYS is redundant.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Lukasz Majewski <l.majewski@samsung.com>
Cc: Minkyu Kang <mk7.kang@samsung.com>
Cc: Scott Wood <scottwood@freescale.com>
Cc: Vladimir Zapolskiy <vz@mleia.com>
---
 include/configs/VCMA9.h    | 2 +-
 include/configs/smdk2410.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h
index d40185e..a2ce7c5 100644
--- a/include/configs/VCMA9.h
+++ b/include/configs/VCMA9.h
@@ -201,7 +201,7 @@ 
 /* NAND configuration */
 #ifdef CONFIG_CMD_NAND
 #define CONFIG_NAND_S3C2410
-#define CONFIG_SYS_S3C2410_NAND_HWECC
+#define CONFIG_S3C2410_NAND_HWECC
 #define CONFIG_SYS_MAX_NAND_DEVICE	1
 #define CONFIG_SYS_NAND_BASE		0x4E000000
 #define CONFIG_S3C24XX_CUSTOM_NAND_TIMING
diff --git a/include/configs/smdk2410.h b/include/configs/smdk2410.h
index d4ae19f..0d0da28 100644
--- a/include/configs/smdk2410.h
+++ b/include/configs/smdk2410.h
@@ -172,7 +172,7 @@ 
  */
 #ifdef CONFIG_CMD_NAND
 #define CONFIG_NAND_S3C2410
-#define CONFIG_SYS_S3C2410_NAND_HWECC
+#define CONFIG_S3C2410_NAND_HWECC
 #define CONFIG_SYS_MAX_NAND_DEVICE	1
 #define CONFIG_SYS_NAND_BASE		0x4E000000
 #endif