diff options
author | Stefan Roese <sr@denx.de> | 2006-01-18 20:06:44 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-01-18 20:06:44 +0100 |
commit | 18c5e64c5b0f21f0824bf4f0a8ab0f942652ee7f (patch) | |
tree | 067552321aa96b1294757a4a8a39f329c1e64047 /board/esd/common | |
parent | a7b9fb9110e3c0be644b3e2c8f397f606138a710 (diff) | |
download | u-boot-imx-18c5e64c5b0f21f0824bf4f0a8ab0f942652ee7f.zip u-boot-imx-18c5e64c5b0f21f0824bf4f0a8ab0f942652ee7f.tar.gz u-boot-imx-18c5e64c5b0f21f0824bf4f0a8ab0f942652ee7f.tar.bz2 |
Fix various compiler warnings on ppc4xx builds (ELDK 4.0)
Patch by Stefan Roese, 18 Jan 2006
Diffstat (limited to 'board/esd/common')
-rw-r--r-- | board/esd/common/auto_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/esd/common/auto_update.c b/board/esd/common/auto_update.c index d48e972..1decc0e 100644 --- a/board/esd/common/auto_update.c +++ b/board/esd/common/auto_update.c @@ -283,7 +283,7 @@ int au_do_update(int i, long sz) */ if (au_image[i].type != AU_NAND) { debug ("flash_write(%p, %lx %x)\n", addr, start, nbytes); - rc = flash_write((uchar *)addr, start, nbytes); + rc = flash_write((char *)addr, start, nbytes); } else { #if (CONFIG_COMMANDS & CFG_CMD_NAND) debug ("nand_rw(%p, %lx %x)\n", addr, start, nbytes); |