diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:03 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:03 +0200 |
commit | 7d9b5bae5ba558c7464d89d033aca04acaf01172 (patch) | |
tree | 0e96ee96eb485fe32e09b3e9cf72238165c97a12 /include/configs/sc3.h | |
parent | 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46 (diff) | |
download | u-boot-7d9b5bae5ba558c7464d89d033aca04acaf01172.tar.gz u-boot-7d9b5bae5ba558c7464d89d033aca04acaf01172.tar.xz u-boot-7d9b5bae5ba558c7464d89d033aca04acaf01172.zip |
cleanup use of CFG_ENV_IS_IN_FLASH
- #if CFG_ENV_IS_IN_FLASH
- #if (CFG_ENV_IS_IN_FLASH == 1)
- #define CFG_ENV_IS_IN_FLASH 0
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/configs/sc3.h')
-rw-r--r-- | include/configs/sc3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sc3.h b/include/configs/sc3.h index 659f74ed95..4205f46e5c 100644 --- a/include/configs/sc3.h +++ b/include/configs/sc3.h @@ -405,7 +405,7 @@ extern unsigned long offsetOfEnvironment; #define CFG_WRITE_SWAPPED_DATA /* swap Databytes between reading/writing */ #define CFG_ENV_IS_IN_FLASH 1 -#if CFG_ENV_IS_IN_FLASH +#ifdef CFG_ENV_IS_IN_FLASH #define CFG_ENV_OFFSET 0x00000000 /* Offset of Environment Sector in bottom type */ #define CFG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */ #define CFG_ENV_SECT_SIZE 0x4000 /* see README - env sector total size */ |