diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-13 14:44:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 14:44:04 +0200 |
commit | 0740ac26f4e590bf5b4e7b9a9886208dc2dacb32 (patch) | |
tree | 5d18fcb91d491f602c17c550af70a9a092b883f8 /lib_m68k/board.c | |
parent | af577da58642b81eb94067e3d9e9dc6998cd620d (diff) | |
parent | 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82 (diff) | |
download | u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.zip u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.tar.gz u-boot-imx-0740ac26f4e590bf5b4e7b9a9886208dc2dacb32.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-coldfire
Diffstat (limited to 'lib_m68k/board.c')
-rw-r--r-- | lib_m68k/board.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib_m68k/board.c b/lib_m68k/board.c index ae942e5..d27c89c 100644 --- a/lib_m68k/board.c +++ b/lib_m68k/board.c @@ -176,7 +176,7 @@ typedef int (init_fnc_t) (void); static int init_baudrate (void) { - uchar tmp[64]; /* long enough for environment variables */ + char tmp[64]; /* long enough for environment variables */ int i = getenv_r ("baudrate", tmp, sizeof (tmp)); gd->baudrate = (i > 0) @@ -267,7 +267,7 @@ board_init_f (ulong bootflag) #ifdef CONFIG_PRAM int i; ulong reg; - uchar tmp[64]; /* long enough for environment variables */ + char tmp[64]; /* long enough for environment variables */ #endif /* Pointer is writable since we allocated a register for it */ @@ -752,7 +752,7 @@ void board_init_r (gd_t *id, ulong dest_addr) */ { ulong pram; - uchar memsz[32]; + char memsz[32]; #ifdef CONFIG_PRAM char *s; |