summaryrefslogtreecommitdiff
path: root/src/northbridge/motorola/mpc107/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/motorola/mpc107/i2c.c')
-rw-r--r--src/northbridge/motorola/mpc107/i2c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/motorola/mpc107/i2c.c b/src/northbridge/motorola/mpc107/i2c.c
index 4ead02331b..5f06a5136f 100644
--- a/src/northbridge/motorola/mpc107/i2c.c
+++ b/src/northbridge/motorola/mpc107/i2c.c
@@ -18,8 +18,8 @@
* MA 02111-1307 USA
*/
-#include <types.h>
#include <stdlib.h>
+#include <stdint.h>
#include <string.h>
#include "i2c.h"
@@ -80,7 +80,7 @@ void i2c_stop(struct i2c_bus *bus)
}
int i2c_master_write(struct i2c_bus *bus, int target, int address,
- const u8 *data, int length)
+ const uint8_t *data, int length)
{
if (! bus)
bus = first_i2c;
@@ -89,7 +89,7 @@ int i2c_master_write(struct i2c_bus *bus, int target, int address,
}
int i2c_master_read(struct i2c_bus *bus, int target, int address,
- u8 *data, int length)
+ uint8_t *data, int length)
{
if (! bus)
bus = first_i2c;