diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 22:53:33 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-11 22:53:33 +0100 |
commit | d52fb7e3d135704334bd6f97f3444e824665b76f (patch) | |
tree | e1e91e323b603533acda1c1de53388c588e3753c /board/lart/flash.c | |
parent | 4367a01036bdb67e7fc3000cedba7195fbdee304 (diff) | |
download | u-boot-imx-d52fb7e3d135704334bd6f97f3444e824665b76f.zip u-boot-imx-d52fb7e3d135704334bd6f97f3444e824665b76f.tar.gz u-boot-imx-d52fb7e3d135704334bd6f97f3444e824665b76f.tar.bz2 |
Some code cleanup for GCC 4.x
Diffstat (limited to 'board/lart/flash.c')
-rw-r--r-- | board/lart/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/lart/flash.c b/board/lart/flash.c index 5232ed2..28c4531 100644 --- a/board/lart/flash.c +++ b/board/lart/flash.c @@ -348,7 +348,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; |