diff options
| author | Jean Delvare <khali@linux-fr.org> | 2006-12-10 15:21:34 -0500 |
|---|---|---|
| committer | Jean Delvare <khali@arrakis.delvare> | 2006-12-10 15:21:34 -0500 |
| commit | d7aef138f3c08c5bbab567bc9a84e43a88f50395 (patch) | |
| tree | 26d01cdbcad5f3caecae8a326f9dd45a7dc7f53f | |
| parent | 07125ab2c2641e976bbaf3b89a735ad5a99e25d3 (diff) | |
i2c: Fix OMAP clock prescaler to match the comment
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
| -rw-r--r-- | drivers/i2c/busses/i2c-omap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index dec04da0455c..bcd8367cede1 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c | |||
| @@ -231,8 +231,8 @@ static int omap_i2c_init(struct omap_i2c_dev *dev) | |||
| 231 | * 13 2 1 | 231 | * 13 2 1 |
| 232 | * 19.2 2 1 | 232 | * 19.2 2 1 |
| 233 | */ | 233 | */ |
| 234 | if (fclk_rate > 16000000) | 234 | if (fclk_rate > 12000000) |
| 235 | psc = (fclk_rate + 8000000) / 12000000; | 235 | psc = fclk_rate / 12000000; |
| 236 | } | 236 | } |
| 237 | 237 | ||
| 238 | /* Setup clock prescaler to obtain approx 12MHz I2C module clock: */ | 238 | /* Setup clock prescaler to obtain approx 12MHz I2C module clock: */ |
