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/trab | |
parent | d52fb7e3d135704334bd6f97f3444e824665b76f (diff) | |
download | u-boot-imx-8de7ed3abe2b972fd3cc2eda3953fa2c0b554e3e.zip u-boot-imx-8de7ed3abe2b972fd3cc2eda3953fa2c0b554e3e.tar.gz u-boot-imx-8de7ed3abe2b972fd3cc2eda3953fa2c0b554e3e.tar.bz2 |
More GCC 4.x code cleanup
Diffstat (limited to 'board/trab')
-rw-r--r-- | board/trab/flash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/trab/flash.c b/board/trab/flash.c index b4435e3..8cdd824 100644 --- a/board/trab/flash.c +++ b/board/trab/flash.c @@ -308,8 +308,7 @@ outahere: * Copy memory to flash */ -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) { vu_long *addr = (vu_long *) dest; ulong result; |