diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 22:56:07 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 22:56:07 +0100 |
commit | 8de7ed3abe2b972fd3cc2eda3953fa2c0b554e3e (patch) | |
tree | 203cc00536a08524bfb36bc36c2844b44d295bb9 /board/cobra5272 | |
parent | d52fb7e3d135704334bd6f97f3444e824665b76f (diff) |
More GCC 4.x code cleanup
Diffstat (limited to 'board/cobra5272')
-rw-r--r-- | board/cobra5272/flash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/cobra5272/flash.c b/board/cobra5272/flash.c index 6f5874a6719..73cc2f2c10c 100644 --- a/board/cobra5272/flash.c +++ b/board/cobra5272/flash.c @@ -256,8 +256,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last) return rc; } - -volatile static int write_word (flash_info_t * info, ulong dest, ulong data) +static int write_word (flash_info_t * info, ulong dest, ulong data) { volatile u16 *addr = (volatile u16 *) dest; ulong result; |