diff options
author | Jean-Christophe PLAGNIOL-VILLARD | 2008-08-13 01:40:42 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD | 2008-08-13 01:40:42 +0200 |
commit | 00b1883a4cac59d97cd297b1a3a398db85982865 (patch) | |
tree | 441d91dc472d200c0428b5370bbcc8a110b78e34 /board/icecube/flash.c | |
parent | 7ba44a5521cdb7fa1c72864025cde1e21a6f6921 (diff) |
drivers/mtd: Move conditional compilation to Makefile
rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/icecube/flash.c')
-rw-r--r-- | board/icecube/flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/icecube/flash.c b/board/icecube/flash.c index 15e86d34f39..2d4026a9de7 100644 --- a/board/icecube/flash.c +++ b/board/icecube/flash.c @@ -23,7 +23,7 @@ #include <common.h> -#ifndef CFG_FLASH_CFI_DRIVER +#ifndef CONFIG_FLASH_CFI_DRIVER flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */ /* NOTE - CONFIG_FLASH_16BIT means the CPU interface is 16-bit, it @@ -490,4 +490,4 @@ static int write_word_amd (flash_info_t *info, FPWV *dest, FPW data) return (res); } -#endif /*CFG_FLASH_CFI_DRIVER*/ +#endif /*CONFIG_FLASH_CFI_DRIVER*/ |