aboutsummaryrefslogtreecommitdiff
path: root/cpu/mpc85xx/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/mpc85xx/i2c.c')
-rw-r--r--cpu/mpc85xx/i2c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc85xx/i2c.c b/cpu/mpc85xx/i2c.c
index 2d0848799..32dcf5d47 100644
--- a/cpu/mpc85xx/i2c.c
+++ b/cpu/mpc85xx/i2c.c
@@ -245,12 +245,12 @@ int i2c_probe (uchar chip)
* and looking for an <ACK> back.
*/
udelay(10000);
- return i2c_read (chip, 0, 1, (char *)&tmp, 1);
+ return i2c_read (chip, 0, 1, (uchar *)&tmp, 1);
}
uchar i2c_reg_read (uchar i2c_addr, uchar reg)
{
- char buf[1];
+ uchar buf[1];
i2c_read (i2c_addr, reg, 1, buf, 1);