diff options
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;  			}  		} |