Browse Source

blackfin: the sclk MHz in i2c driver should be divided by 1000 other than 1024

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Sonic Zhang 11 years ago
parent
commit
bb0fad0ea0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/i2c/bfin-twi_i2c.c

+ 1 - 1
drivers/i2c/bfin-twi_i2c.c

@@ -274,7 +274,7 @@ unsigned int i2c_get_bus_speed(void)
  */
 void i2c_init(int speed, int slaveaddr)
 {
-	uint8_t prescale = ((get_sclk() / 1024 / 1024 + 5) / 10) & 0x7F;
+	uint8_t prescale = ((get_sclk() / 1000 / 1000 + 5) / 10) & 0x7F;
 
 	/* Set TWI internal clock as 10MHz */
 	twi->control = prescale;