summaryrefslogtreecommitdiffstats
path: root/include/flash.h
diff options
context:
space:
mode:
authorThomas Chou <thomas@wytron.com.tw>2015-10-31 11:09:36 +0800
committerStefan Roese <sr@denx.de>2015-11-30 13:00:00 +0100
commit5aeeabf43c27b1bf4b3bb86e2b713dd98801df63 (patch)
tree629e68c0192401576ecf262f914c5ef1013b82af /include/flash.h
parentfa8883a1e39a20e72aaa5093af0c80062cb95757 (diff)
downloadtalos-obmc-uboot-5aeeabf43c27b1bf4b3bb86e2b713dd98801df63.tar.gz
talos-obmc-uboot-5aeeabf43c27b1bf4b3bb86e2b713dd98801df63.zip
cfi_flash: give default CONFIG_SYS_MAX_FLASH_SECT in flash.h
Give default CONFIG_SYS_MAX_FLASH_SECT in flash.h, so that the header can be included regardless of the present of flash. The value 512 is the most used. Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/flash.h')
-rw-r--r--include/flash.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/flash.h b/include/flash.h
index 13e03842c8..f53ace7889 100644
--- a/include/flash.h
+++ b/include/flash.h
@@ -8,7 +8,10 @@
#ifndef _FLASH_H_
#define _FLASH_H_
-#ifndef CONFIG_SYS_NO_FLASH
+#ifndef CONFIG_SYS_MAX_FLASH_SECT
+#define CONFIG_SYS_MAX_FLASH_SECT 512
+#endif
+
/*-----------------------------------------------------------------------
* FLASH Info: contains chip specific data, per FLASH bank
*/
@@ -503,6 +506,4 @@ extern flash_info_t *flash_get_info(ulong base);
#define FLASH_ERASE_TIMEOUT 120000 /* timeout for erasing in ms */
#define FLASH_WRITE_TIMEOUT 500 /* timeout for writes in ms */
-#endif /* !CONFIG_SYS_NO_FLASH */
-
#endif /* _FLASH_H_ */
OpenPOWER on IntegriCloud