diff options
author | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-09-08 22:03:11 +0000 |
commit | eedcd078fe1434d93b84322c4e14c52f80282a41 (patch) | |
tree | 0dd7b16045dd41fbda926f929f1d7cf8edbd2ae0 /board/dave/PPChameleonEVB | |
parent | 7ca202f566a6e9dc3d0dd0216e82ad1a48f50f19 (diff) | |
download | u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.zip u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.gz u-boot-imx-eedcd078fe1434d93b84322c4e14c52f80282a41.tar.bz2 |
* Patch by Detlev Zundel, 08 Sep 2004:
Update etags build target
* Improve NetConsole support: add support for broadcast destination
address and buffered input.
* Cleanup compiler warnings for GCC 3.3.x and later
* Fix problem in cmd_jffs2.c introduced by CFG_JFFS_SINGLE_PART patch
Diffstat (limited to 'board/dave/PPChameleonEVB')
-rw-r--r-- | board/dave/PPChameleonEVB/PPChameleonEVB.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/dave/PPChameleonEVB/PPChameleonEVB.c b/board/dave/PPChameleonEVB/PPChameleonEVB.c index ffa53f8..0bd43bd 100644 --- a/board/dave/PPChameleonEVB/PPChameleonEVB.c +++ b/board/dave/PPChameleonEVB/PPChameleonEVB.c @@ -32,7 +32,7 @@ /* ------------------------------------------------------------------------- */ /* Prototypes */ -int gunzip(void *, int, unsigned char *, int *); +int gunzip(void *, int, unsigned char *, unsigned long *); int board_early_init_f (void) { @@ -104,7 +104,7 @@ int misc_init_r (void) unsigned long cntrl0Reg; dst = malloc(CFG_FPGA_MAX_SIZE); - if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) { + if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) { printf ("GUNZIP ERROR - must RESET board to recover\n"); do_reset (NULL, 0, 0, NULL); } |