diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2017-08-20 17:20:00 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2017-08-22 09:56:09 +0200 |
commit | 236c49a1c89f959e0b96c87a712688ba93abd3c4 (patch) | |
tree | 1ecfc2eef7ba39078a9736572cf8322cd95a4655 /include/flash.h | |
parent | 2d7cb5b426e7e0cdf684d7f8029ad132d7a8d383 (diff) | |
download | u-boot-236c49a1c89f959e0b96c87a712688ba93abd3c4.tar.gz u-boot-236c49a1c89f959e0b96c87a712688ba93abd3c4.tar.bz2 u-boot-236c49a1c89f959e0b96c87a712688ba93abd3c4.zip |
mtd: cfi: staticize functions
Staticize a few functions and variables which are no longer exposed.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/flash.h b/include/flash.h index 55c5bdd4b1..f53fe91349 100644 --- a/include/flash.h +++ b/include/flash.h @@ -81,7 +81,6 @@ typedef unsigned long flash_sect_t; /* Prototypes */ extern unsigned long flash_init (void); -extern void flash_protect_default(void); extern void flash_print_info (flash_info_t *); extern int flash_erase (flash_info_t *, int, int); extern int flash_sect_erase (ulong addr_first, ulong addr_last); @@ -114,10 +113,6 @@ extern int jedec_flash_match(flash_info_t *info, ulong base); #define CFI_CMDSET_AMD_LEGACY 0xFFF0 #endif -#if defined(CONFIG_SYS_FLASH_CFI) -extern flash_info_t *flash_get_info(ulong base); -#endif - /*----------------------------------------------------------------------- * return codes from flash_write(): */ |