diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-12 23:18:30 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-16 17:26:39 -0400 |
commit | 6ef2e75032cb289e191551546947abfe7abcac1f (patch) | |
tree | d4af7fdd7901b881842fb82b5871d2ef2663cb2a /include/configs | |
parent | d3c1f467378259514e9e37f72808315adc16ede9 (diff) | |
download | u-boot-imx-6ef2e75032cb289e191551546947abfe7abcac1f.zip u-boot-imx-6ef2e75032cb289e191551546947abfe7abcac1f.tar.gz u-boot-imx-6ef2e75032cb289e191551546947abfe7abcac1f.tar.bz2 |
spear: Use upper case for CONFIG options
There are a few options which use lower case. We should use upper case for
all CONFIG options.
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Add usbtty/nand hunk to include/configs/spear3xx_evb.h]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/spear3xx_evb.h | 13 | ||||
-rw-r--r-- | include/configs/spear6xx_evb.h | 6 |
2 files changed, 7 insertions, 12 deletions
diff --git a/include/configs/spear3xx_evb.h b/include/configs/spear3xx_evb.h index 8090bc8..dd73a4d 100644 --- a/include/configs/spear3xx_evb.h +++ b/include/configs/spear3xx_evb.h @@ -12,22 +12,19 @@ * High Level Configuration Options * (easy to change) */ -#if defined(CONFIG_spear300) +#if defined(CONFIG_SPEAR300) #define CONFIG_SPEAR3XX -#define CONFIG_SPEAR300 -#elif defined(CONFIG_spear310) +#elif defined(CONFIG_SPEAR310) #define CONFIG_SPEAR3XX -#define CONFIG_SPEAR310 -#elif defined(CONFIG_spear320) +#elif defined(CONFIG_SPEAR320) #define CONFIG_SPEAR3XX -#define CONFIG_SPEAR320 #endif -#if defined(CONFIG_usbtty) +#if defined(CONFIG_USBTTY) #define CONFIG_SPEAR_USBTTY #endif -#if defined(CONFIG_nand) +#if defined(CONFIG_NAND) #define CONFIG_ENV_IS_IN_NAND #else #define CONFIG_ENV_IS_IN_FLASH diff --git a/include/configs/spear6xx_evb.h b/include/configs/spear6xx_evb.h index 28dddcc..7745247 100644 --- a/include/configs/spear6xx_evb.h +++ b/include/configs/spear6xx_evb.h @@ -12,13 +12,11 @@ * High Level Configuration Options * (easy to change) */ -#define CONFIG_SPEAR600 - -#if defined(CONFIG_usbtty) +#if defined(CONFIG_USBTTY) #define CONFIG_SPEAR_USBTTY #endif -#if defined(CONFIG_nand) +#if defined(CONFIG_NAND) #define CONFIG_ENV_IS_IN_NAND #else #define CONFIG_ENV_IS_IN_FLASH |