Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7aef138 authored by Jean Delvare's avatar Jean Delvare Committed by Jean Delvare
Browse files

i2c: Fix OMAP clock prescaler to match the comment

parent 07125ab2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -231,8 +231,8 @@ static int omap_i2c_init(struct omap_i2c_dev *dev)
		 * 13		2		1
		 * 19.2		2		1
		 */
		if (fclk_rate > 16000000)
			psc = (fclk_rate + 8000000) / 12000000;
		if (fclk_rate > 12000000)
			psc = fclk_rate / 12000000;
	}

	/* Setup clock prescaler to obtain approx 12MHz I2C module clock: */