aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-mxc
diff options
context:
space:
mode:
authorWolfram Sang <wolfram@the-dreams.de>2012-07-08 13:11:43 +0200
committerWolfram Sang <w.sang@pengutronix.de>2012-07-10 10:43:37 +0200
commit8c88ab040115430fc146df7aa5a57538bf6d0e2d (patch)
tree4232cdc66b7ee2ec0eb15e5ea893105ef845346d /arch/arm/plat-mxc
parenti2c: i2c-imx: Adapt the clock name to the new clock framework (diff)
downloadlinux-dev-8c88ab040115430fc146df7aa5a57538bf6d0e2d.tar.xz
linux-dev-8c88ab040115430fc146df7aa5a57538bf6d0e2d.zip
i2c: imx: make bitrate an u32 type
sparse found this assignment of u32 to an int. Fix it: drivers/i2c/busses/i2c-imx.c:540:56: warning: incorrect type in argument 3 (different signedness) and also fix the type in platform_data. All current users use values which fit into the old and new type, so it is a safe change. Signed-off-by: Wolfram Sang <wolfram@the-dreams.de> Reviewed-by: Richard Zhao <richard.zhao@freescale.com> Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r--arch/arm/plat-mxc/include/mach/i2c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/include/mach/i2c.h b/arch/arm/plat-mxc/include/mach/i2c.h
index 375cdd0cf876..8289d915e615 100644
--- a/arch/arm/plat-mxc/include/mach/i2c.h
+++ b/arch/arm/plat-mxc/include/mach/i2c.h
@@ -15,7 +15,7 @@
*
**/
struct imxi2c_platform_data {
- int bitrate;
+ u32 bitrate;
};
#endif /* __ASM_ARCH_I2C_H_ */