diff options
| author | Wolfgang Denk <wd@denx.de> | 2007-11-18 17:11:09 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-11-18 17:11:09 +0100 | 
| commit | 8412d814ce8bf5570a2b747f1e7fd321097fe987 (patch) | |
| tree | 27f1467772c675242af737a8481ec75f81b0d2d9 | |
| parent | 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37 (diff) | |
| download | olio-uboot-2014.01-8412d814ce8bf5570a2b747f1e7fd321097fe987.tar.xz olio-uboot-2014.01-8412d814ce8bf5570a2b747f1e7fd321097fe987.zip | |
Fix compiler warnings for ARM systems.
Signed-off-by: Wolfgang Denk <wd@denx.de>
| -rw-r--r-- | board/mpl/vcma9/flash.c | 2 | ||||
| -rw-r--r-- | board/mpl/vcma9/vcma9.h | 2 | ||||
| -rw-r--r-- | board/pleb2/flash.c | 2 | ||||
| -rw-r--r-- | board/sbc2410x/flash.c | 2 | ||||
| -rw-r--r-- | board/smdk2410/flash.c | 2 | ||||
| -rw-r--r-- | board/wepep250/flash.c | 5 | ||||
| -rw-r--r-- | cpu/pxa/i2c.c | 2 | ||||
| -rw-r--r-- | drivers/s3c4510b_eth.c | 2 | 
8 files changed, 11 insertions, 8 deletions
| diff --git a/board/mpl/vcma9/flash.c b/board/mpl/vcma9/flash.c index ccfe1768f..d15a19115 100644 --- a/board/mpl/vcma9/flash.c +++ b/board/mpl/vcma9/flash.c @@ -290,7 +290,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)   * Copy memory to flash   */ -volatile static int write_hword (flash_info_t * info, ulong dest, ushort data) +static int write_hword (flash_info_t * info, ulong dest, ushort data)  {  	vu_short *addr = (vu_short *) dest;  	ushort result; diff --git a/board/mpl/vcma9/vcma9.h b/board/mpl/vcma9/vcma9.h index 7a3234374..220b7053b 100644 --- a/board/mpl/vcma9/vcma9.h +++ b/board/mpl/vcma9/vcma9.h @@ -128,7 +128,7 @@ typedef struct {  } /*__attribute__((__packed__))*/ VCMA9_PLD;  #define VCMA9_PLD_BASE	0x2C000100 -static inline VCMA9_PLD * const VCMA9_GetBase_PLD(void) +static inline VCMA9_PLD * VCMA9_GetBase_PLD(void)  {  	return (VCMA9_PLD * const)VCMA9_PLD_BASE;  } diff --git a/board/pleb2/flash.c b/board/pleb2/flash.c index 97271d921..5a1eba6b3 100644 --- a/board/pleb2/flash.c +++ b/board/pleb2/flash.c @@ -196,7 +196,7 @@ void flash_print_info (flash_info_t * info)  	int i;  	uchar *boottype;  	uchar *bootletter; -	uchar *fmt; +	char *fmt;  	uchar botbootletter[] = "B";  	uchar topbootletter[] = "T";  	uchar botboottype[] = "bottom boot sector"; diff --git a/board/sbc2410x/flash.c b/board/sbc2410x/flash.c index f2718f256..0c669e4d7 100644 --- a/board/sbc2410x/flash.c +++ b/board/sbc2410x/flash.c @@ -288,7 +288,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)   * Copy memory to flash   */ -volatile static int write_hword (flash_info_t * info, ulong dest, ushort data) +static int write_hword (flash_info_t * info, ulong dest, ushort data)  {  	vu_short *addr = (vu_short *) dest;  	ushort result; diff --git a/board/smdk2410/flash.c b/board/smdk2410/flash.c index 993946be9..376930bd3 100644 --- a/board/smdk2410/flash.c +++ b/board/smdk2410/flash.c @@ -290,7 +290,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)   * Copy memory to flash   */ -volatile static int write_hword (flash_info_t * info, ulong dest, ushort data) +static int write_hword (flash_info_t * info, ulong dest, ushort data)  {  	vu_short *addr = (vu_short *) dest;  	ushort result; diff --git a/board/wepep250/flash.c b/board/wepep250/flash.c index 2a322903d..e2e08f742 100644 --- a/board/wepep250/flash.c +++ b/board/wepep250/flash.c @@ -44,6 +44,7 @@  #if ( WEP_FLASH_BUS_WIDTH == 1 )  #  define FLASH_BUS vu_char +#  define FLASH_BUS_RET u_char  #  if ( WEP_FLASH_INTERLEAVE == 1 )  #    define FLASH_CMD( x ) x  #  else @@ -53,6 +54,7 @@  #elif ( WEP_FLASH_BUS_WIDTH == 2 )  #  define FLASH_BUS vu_short +#  define FLASH_BUS_RET u_short  #  if ( WEP_FLASH_INTERLEAVE == 1 )  #    define FLASH_CMD( x ) x  #  elif ( WEP_FLASH_INTERLEAVE == 2 ) @@ -64,6 +66,7 @@  #elif ( WEP_FLASH_BUS_WIDTH == 4 )  #  define FLASH_BUS vu_long +#  define FLASH_BUS_RET u_long  #  if ( WEP_FLASH_INTERLEAVE == 1 )  #    define FLASH_CMD( x ) x  #  elif ( WEP_FLASH_INTERLEAVE == 2 ) @@ -81,7 +84,7 @@  flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; -static FLASH_BUS flash_status_reg (void) +static FLASH_BUS_RET flash_status_reg (void)  {  	FLASH_BUS *addr = (FLASH_BUS *) 0; diff --git a/cpu/pxa/i2c.c b/cpu/pxa/i2c.c index 722d94947..92dd19f95 100644 --- a/cpu/pxa/i2c.c +++ b/cpu/pxa/i2c.c @@ -457,7 +457,7 @@ int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)  uchar i2c_reg_read (uchar chip, uchar reg)  { -	char buf; +	uchar buf;  	PRINTD(("i2c_reg_read(chip=0x%02x, reg=0x%02x)\n",chip,reg));  	i2c_read(chip, reg, 1, &buf, 1); diff --git a/drivers/s3c4510b_eth.c b/drivers/s3c4510b_eth.c index 48901aa12..3d9066abe 100644 --- a/drivers/s3c4510b_eth.c +++ b/drivers/s3c4510b_eth.c @@ -175,7 +175,7 @@ s32 eth_send(volatile void *packet, s32 length)  	}  	/* copy user data into frame data pointer */ -	memcpy((void *)(eth->m_curTX_FD->m_frameDataPtr.bf.dataPtr), +	memcpy((void *)((u32)(eth->m_curTX_FD->m_frameDataPtr.bf.dataPtr)),  	       (void *)packet,  	       length); |