diff options
Diffstat (limited to 'board/cm5200')
| -rw-r--r-- | board/cm5200/cmd_cm5200.c | 8 | ||||
| -rw-r--r-- | board/cm5200/fwupdate.c | 2 | 
2 files changed, 5 insertions, 5 deletions
| diff --git a/board/cm5200/cmd_cm5200.c b/board/cm5200/cmd_cm5200.c index 354f2bf6e..2201bdd8c 100644 --- a/board/cm5200/cmd_cm5200.c +++ b/board/cm5200/cmd_cm5200.c @@ -335,7 +335,7 @@ int do_rs232(char *argv[])  		if (((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) & 0x10000000) !=  				0x10000000) {  			error_status = 2; -			printf("%s: failure at rs232_4, rxd status is %d " +			printf("%s: failure at rs232_4, rxd status is %lu "  				"(should be 1)\n", __FUNCTION__,  				((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) &  					0x10000000) >> 28); @@ -350,7 +350,7 @@ int do_rs232(char *argv[])  		if (((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) & 0x10000000) !=  				0x00000000) {  			error_status = 2; -			printf("%s: failure at rs232_4, rxd status is %d " +			printf("%s: failure at rs232_4, rxd status is %lu "  				"(should be 0)\n", __FUNCTION__,  				((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) &  					0x10000000) >> 28); @@ -366,7 +366,7 @@ int do_rs232(char *argv[])  		if (((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) & 0x20000000) !=  				0x20000000) {  			error_status = 3; -			printf("%s: failure at rs232_4, cts status is %d " +			printf("%s: failure at rs232_4, cts status is %lu "  				"(should be 1)\n", __FUNCTION__,  				((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) &  					0x20000000) >> 29); @@ -381,7 +381,7 @@ int do_rs232(char *argv[])  		if (((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) & 0x20000000) !=  				0x00000000) {  			error_status = 3; -			printf("%s: failure at rs232_4, cts status is %d " +			printf("%s: failure at rs232_4, cts status is %lu "  				"(should be 0)\n", __FUNCTION__,  				((*(vu_long *)MPC5XXX_WU_GPIO_DATA_I) &  					0x20000000) >> 29); diff --git a/board/cm5200/fwupdate.c b/board/cm5200/fwupdate.c index 19aa94a5a..5a2719135 100644 --- a/board/cm5200/fwupdate.c +++ b/board/cm5200/fwupdate.c @@ -63,7 +63,7 @@ void cm5200_fwupdate(void)  	if (!bcmd)  		return; -	sprintf(ka, "%lx", LOAD_ADDR); +	sprintf(ka, "%lx", (ulong)LOAD_ADDR);  	/* prepare our bootargs */  	rsargs = getenv("rs-args"); |