diff options
author | Jason <r64343@freescale.com> | 2010-03-17 16:41:56 +0800 |
---|---|---|
committer | Jason <r64343@freescale.com> | 2010-03-17 18:13:37 +0800 |
commit | 762d994929deb79569986bda8e4d7b56e06d14f0 (patch) | |
tree | f853eb6f029a9ab6683415863fbe85b4799d71cc /drivers/i2c/mxc_i2c.c | |
parent | 029aff138902466bdfc1e62c761e89f8d37e83ea (diff) | |
download | u-boot-imx-762d994929deb79569986bda8e4d7b56e06d14f0.zip u-boot-imx-762d994929deb79569986bda8e4d7b56e06d14f0.tar.gz u-boot-imx-762d994929deb79569986bda8e4d7b56e06d14f0.tar.bz2 |
ENGR00121202 Add uboot support for MX53
Add uboot support for MX53
Signed-off-by:Jason Liu <r64343@freescale.com>
Diffstat (limited to 'drivers/i2c/mxc_i2c.c')
-rw-r--r-- | drivers/i2c/mxc_i2c.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 6732b41..7479c60 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -38,6 +38,8 @@ #include <asm/arch/mx35.h> #elif defined(CONFIG_MX51_3DS) #include <asm/arch/mx51.h> +#elif defined(CONFIG_MX53) +#include <asm/arch/mx53.h> #else #error "Please include specific headfile " #endif @@ -233,7 +235,7 @@ static int i2c_addr(uchar chip, uint addr, int alen) int i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len) { int timeout = I2C_MAX_TIMEOUT; - int ret; + uint ret; DPRINTF("%s chip: 0x%02x addr: 0x%04x alen: %d len: %d\n", __func__, chip, addr, alen, len); |