diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
| commit | 77ddac9480d63a80b6bb76d7ee4dcc2d1070867e (patch) | |
| tree | e9563b2f28ea59062b90bb5712f141e8e9798aee /cpu/mpc8xx/spi.c | |
| parent | 17a8b276ba2b3499b75cd60b0b5289dbbea7967b (diff) | |
| download | olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.tar.xz olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.zip | |
Cleanup for GCC-4.x
Diffstat (limited to 'cpu/mpc8xx/spi.c')
| -rw-r--r-- | cpu/mpc8xx/spi.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc8xx/spi.c b/cpu/mpc8xx/spi.c index 9213d101a..e318ed0d2 100644 --- a/cpu/mpc8xx/spi.c +++ b/cpu/mpc8xx/spi.c @@ -525,11 +525,11 @@ int spi_post_test (int flags)  	for (i = 0; i < TEST_NUM; i++) {  		for (l = TEST_MIN_LENGTH; l <= TEST_MAX_LENGTH; l += 8) { -			packet_fill (txbuf, l); +			packet_fill ((char *)txbuf, l);  			spi_xfer (l); -			if (packet_check (rxbuf, l) < 0) { +			if (packet_check ((char *)rxbuf, l) < 0) {  				goto Done;  			}  		} |