diff options
author | Stefan Roese <sr@denx.de> | 2005-10-20 16:39:16 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-10-20 16:39:16 +0200 |
commit | a547775bac812f32371f1c3871bc18b40f03aaed (patch) | |
tree | fae83daa76b3ccf4e38f0e68d78baa54af24c007 /board/esd/common | |
parent | c4c13df284cb06156c16ee6aef49b8d23be3fadd (diff) | |
download | u-boot-imx-a547775bac812f32371f1c3871bc18b40f03aaed.zip u-boot-imx-a547775bac812f32371f1c3871bc18b40f03aaed.tar.gz u-boot-imx-a547775bac812f32371f1c3871bc18b40f03aaed.tar.bz2 |
Fix conflicting types (flash_write()) in esd auto_update.c
Patch by Stefan Roese, 20 Oct 2005
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 1dceb3a..d48e972 100644 --- a/board/esd/common/auto_update.c +++ b/board/esd/common/auto_update.c @@ -65,7 +65,7 @@ extern int transfer_pic(unsigned char, unsigned char *, int, int); #endif extern int flash_sect_erase(ulong, ulong); extern int flash_sect_protect (int, ulong, ulong); -extern int flash_write (uchar *, ulong, ulong); +extern int flash_write (char *, ulong, ulong); /* change char* to void* to shutup the compiler */ extern block_dev_desc_t *get_dev (char*, int); |