diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-09-28 02:44:25 -0400 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-10-08 06:46:25 -0400 |
commit | 6ccbe607132bd823abbad8d32b13af89161707da (patch) | |
tree | a864577b1942c638afc904107e9d47629d800cc6 /include/linux/i2c | |
parent | d3b64c59341ac88b37a4474f8dee86b0d37accca (diff) |
i2c: add Renesas R-Car I2C driver
R-Car I2C is similar with SH7760 I2C.
But the SH7760 I2C driver had many workaround operations, since H/W had bugs.
Thus, it was pointless to keep compatible between SH7760 and R-Car I2C drivers.
This patch creates new Renesas R-Car I2C driver.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'include/linux/i2c')
-rw-r--r-- | include/linux/i2c/i2c-rcar.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/i2c/i2c-rcar.h b/include/linux/i2c/i2c-rcar.h new file mode 100644 index 00000000000..496f5c2b23c --- /dev/null +++ b/include/linux/i2c/i2c-rcar.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef __I2C_R_CAR_H__ | ||
2 | #define __I2C_R_CAR_H__ | ||
3 | |||
4 | #include <linux/platform_device.h> | ||
5 | |||
6 | struct i2c_rcar_platform_data { | ||
7 | u32 bus_speed; | ||
8 | }; | ||
9 | |||
10 | #endif /* __I2C_R_CAR_H__ */ | ||