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/spear6xx_evb.h | |
parent | d3c1f467378259514e9e37f72808315adc16ede9 (diff) |
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/spear6xx_evb.h')
-rw-r--r-- | include/configs/spear6xx_evb.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/configs/spear6xx_evb.h b/include/configs/spear6xx_evb.h index 28dddcc5b93..7745247052e 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 |