Przeglądaj źródła

i2c: sirf: fix the typo for setting bitrate to less than 100k

there is a typo before, it makes the final bitrate wrong, this patch fixes
it.

Signed-off-by: Zhiwu Song <Zhiwu.Song@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Zhiwu Song 12 lat temu
rodzic
commit
4602bf1642
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      drivers/i2c/busses/i2c-sirf.c

+ 1 - 1
drivers/i2c/busses/i2c-sirf.c

@@ -356,7 +356,7 @@ static int i2c_sirfsoc_probe(struct platform_device *pdev)
 
 	if (bitrate < 100000)
 		regval =
-			(2 * ctrl_speed) / (2 * bitrate * 11);
+			(2 * ctrl_speed) / (bitrate * 11);
 	else
 		regval = ctrl_speed / (bitrate * 5);