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

Commit 2320f504 authored by Linus Walleij's avatar Linus Walleij Committed by Ben Dooks
Browse files

i2c-nomadik: fix speed enumerator



The I2C speed enumerators in the i2c-nomadik header file were in
the wrong order.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 97727600
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@
enum i2c_freq_mode {
	I2C_FREQ_MODE_STANDARD,		/* up to 100 Kb/s */
	I2C_FREQ_MODE_FAST,		/* up to 400 Kb/s */
	I2C_FREQ_MODE_HIGH_SPEED,	/* up to 3.4 Mb/s */
	I2C_FREQ_MODE_FAST_PLUS,	/* up to 1 Mb/s */
	I2C_FREQ_MODE_HIGH_SPEED	/* up to 3.4 Mb/s */
};

/**