diff options
author | Wolfgang Denk | 2009-02-18 21:35:38 +0100 |
---|---|---|
committer | Wolfgang Denk | 2009-02-18 22:40:08 +0100 |
commit | b8845abdc0dcf20d0944e965153f5ae7a9c3077c (patch) | |
tree | 13a8ac19761b46cd842ab766b6ed227b0bef2895 /board/emk | |
parent | 5f0320108870e5d62983d1d5c13a2a087dddf686 (diff) |
Fix build errors after making flash_get_info() non-static
Fix for these build problems:
error: static declaration of 'flash_get_info' follows non-static declaration
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/emk')
-rw-r--r-- | board/emk/common/flash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/emk/common/flash.c b/board/emk/common/flash.c index 330978b9511..8579cfaad8d 100644 --- a/board/emk/common/flash.c +++ b/board/emk/common/flash.c @@ -82,7 +82,7 @@ flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */ static ulong flash_get_size(FPWV *addr, flash_info_t *info); static void flash_reset(flash_info_t *info); static int write_word_amd(flash_info_t *info, FPWV *dest, FPW data); -static flash_info_t *flash_get_info(ulong base); +flash_info_t *flash_get_info(ulong base); /*----------------------------------------------------------------------- * flash_init() @@ -142,7 +142,7 @@ static void flash_reset(flash_info_t *info) /*----------------------------------------------------------------------- */ -static flash_info_t *flash_get_info(ulong base) +flash_info_t *flash_get_info(ulong base) { int i; flash_info_t * info; |