diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:42 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:42 +0200 |
commit | 00b1883a4cac59d97cd297b1a3a398db85982865 (patch) | |
tree | 441d91dc472d200c0428b5370bbcc8a110b78e34 /board/tqc/tqm8xx | |
parent | 7ba44a5521cdb7fa1c72864025cde1e21a6f6921 (diff) | |
download | u-boot-00b1883a4cac59d97cd297b1a3a398db85982865.tar.gz u-boot-00b1883a4cac59d97cd297b1a3a398db85982865.tar.xz u-boot-00b1883a4cac59d97cd297b1a3a398db85982865.zip |
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/tqc/tqm8xx')
-rw-r--r-- | board/tqc/tqm8xx/flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/tqc/tqm8xx/flash.c b/board/tqc/tqm8xx/flash.c index 4342ebc841..1231c7c6f9 100644 --- a/board/tqc/tqm8xx/flash.c +++ b/board/tqc/tqm8xx/flash.c @@ -33,7 +33,7 @@ DECLARE_GLOBAL_DATA_PTR; -#if !defined(CFG_FLASH_CFI_DRIVER) /* do not use if CFI driver is configured */ +#if !defined(CONFIG_FLASH_CFI_DRIVER) /* do not use if CFI driver is configured */ #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ && !defined(CONFIG_TQM885D) @@ -831,4 +831,4 @@ static int write_word (flash_info_t *info, ulong dest, ulong data) /*----------------------------------------------------------------------- */ -#endif /* !defined(CFG_FLASH_CFI_DRIVER) */ +#endif /* !defined(CONFIG_FLASH_CFI_DRIVER) */ |