From 77ddac9480d63a80b6bb76d7ee4dcc2d1070867e Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Thu, 13 Oct 2005 16:45:02 +0200 Subject: Cleanup for GCC-4.x --- board/tqm5200/cmd_stk52xx.c | 4 ++-- board/tqm5200/tqm5200.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'board/tqm5200') diff --git a/board/tqm5200/cmd_stk52xx.c b/board/tqm5200/cmd_stk52xx.c index c30e9df..8b9057f 100755 --- a/board/tqm5200/cmd_stk52xx.c +++ b/board/tqm5200/cmd_stk52xx.c @@ -181,7 +181,7 @@ static void i2s_init(void) static int i2s_play_wave(unsigned long addr, unsigned long len) { unsigned long i; - unsigned char *wave_file = (char *)addr + 44; /* quick'n dirty: skip + unsigned char *wave_file = (uchar *)addr + 44; /* quick'n dirty: skip * wav header*/ unsigned char swapped[4]; struct mpc5xxx_psc *psc = (struct mpc5xxx_psc*)MPC5XXX_PSC2; @@ -304,7 +304,7 @@ static int i2s_squarewave(unsigned long duration, unsigned int freq, static int cmd_sound(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) { unsigned long reg, val, duration; - unsigned char *tmp; + char *tmp; unsigned int freq, channel; unsigned char volume; int rcode = 1; diff --git a/board/tqm5200/tqm5200.c b/board/tqm5200/tqm5200.c index dbd78d5..6aad920 100644 --- a/board/tqm5200/tqm5200.c +++ b/board/tqm5200/tqm5200.c @@ -122,9 +122,9 @@ long int initdram (int board_type) /* find RAM size using SDRAM CS0 only */ sdram_start(0); - test1 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000); + test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000); sdram_start(1); - test2 = get_ram_size((ulong *)CFG_SDRAM_BASE, 0x20000000); + test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x20000000); if (test1 > test2) { sdram_start(0); dramsize = test1; @@ -150,9 +150,9 @@ long int initdram (int board_type) /* find RAM size using SDRAM CS1 only */ sdram_start(0); - test1 = get_ram_size((ulong *)(CFG_SDRAM_BASE + dramsize), 0x20000000); + test1 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000); sdram_start(1); - test2 = get_ram_size((ulong *)(CFG_SDRAM_BASE + dramsize), 0x20000000); + test2 = get_ram_size((long *)(CFG_SDRAM_BASE + dramsize), 0x20000000); if (test1 > test2) { sdram_start(0); dramsize2 = test1; -- cgit v1.1