diff options
author | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 15:29:43 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 15:29:43 +0200 |
commit | 170d5e6d4cb91ff5eaccf1779918567dc1c2cb00 (patch) | |
tree | 1e138931feefe890e3a609a211c267256fd36217 /board/trab | |
parent | 6902df56a0b493f369153b09d11afcd74a580561 (diff) |
Fix conflicting types (flash_write()) in trab auto_update.c
Diffstat (limited to 'board/trab')
-rw-r--r-- | board/trab/auto_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index b25928cf1fe..056e562bfea 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -199,7 +199,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 int i2c_write_multiple (uchar, uint, int, void *, int); extern int i2c_read_multiple (uchar, uint, int, void *, int); |