9
0
Fork 0

i2c-omap: fix am33xx and omap3 fclk_rate

commit f64ed12b accidentally swap fclk_rate from am33xx and omap3.
Revert this change.

Signed-off-by: Jan Weitzel <j.weitzel@phytec.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jan Weitzel 2013-08-30 14:45:32 +02:00 committed by Sascha Hauer
parent a26d126ee1
commit aaf6fdce2f
1 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ struct omap_i2c_driver_data {
static struct omap_i2c_driver_data omap3_data = {
.flags = OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
OMAP_I2C_FLAG_BUS_SHIFT_2,
.fclk_rate = 48000,
.fclk_rate = 96000,
.regs = (u8 *) reg_map,
};
@ -259,7 +259,7 @@ static struct omap_i2c_driver_data omap4_data = {
static struct omap_i2c_driver_data am33xx_data = {
.flags = OMAP_I2C_FLAG_RESET_REGS_POSTIDLE |
OMAP_I2C_FLAG_BUS_SHIFT_NONE,
.fclk_rate = 96000,
.fclk_rate = 48000,
.regs = (u8 *) omap4_reg_map,
};