summaryrefslogtreecommitdiff
path: root/drivers/i2c
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2016-03-04 10:10:44 +0800
committerYe Li <ye.li@nxp.com>2016-03-04 16:09:02 +0800
commit13d2079a2d74797fe665ccf94109b06aaccf1b45 (patch)
treea296191383df38334b9d04414bca16c8138e0a6b /drivers/i2c
parent8c8da023f9c530254486cda4bccb3a45d0ae6e28 (diff)
downloadu-boot-imx-13d2079a2d74797fe665ccf94109b06aaccf1b45.zip
u-boot-imx-13d2079a2d74797fe665ccf94109b06aaccf1b45.tar.gz
u-boot-imx-13d2079a2d74797fe665ccf94109b06aaccf1b45.tar.bz2
MLK-12492-1 mx6: fix type style problems introduced by patch MLK-12483
Some type style problems found by review-commits for previous patch MLK-12483, fix them in this patch and re-check. Signed-off-by: Ye Li <ye.li@nxp.com> (cherry picked from commit 8ada91778f7f28dd33b80f515a35d09c1398933c)
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/mxc_i2c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c
index b77caac..3fb89d1 100644
--- a/drivers/i2c/mxc_i2c.c
+++ b/drivers/i2c/mxc_i2c.c
@@ -526,10 +526,10 @@ void bus_i2c_init(void *base, int speed, int unused,
struct i2c_parms *p = srdata->i2c_data;
if (!base)
return;
-
+
#ifdef CONFIG_MX6
if (mx6_i2c_fused((u32)base)) {
- printf("I2C@0x%x is fused, disable it\n",
+ printf("I2C@0x%x is fused, disable it\n",
(u32)base);
return;
}