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

Commit 858671f8 authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller
Browse files

ATM: misplaced parentheses?



Add missing parentheses

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 57e8f26a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -901,7 +901,7 @@ static int __devinit eeprom_read(struct lanai_dev *lanai)
		clock_l(); udelay(5);
		for (i = 128; i != 0; i >>= 1) {   /* write command out */
			tmp = (lanai->conf1 & ~CONFIG1_PROMDATA) |
			    (data & i) ? CONFIG1_PROMDATA : 0;
			    ((data & i) ? CONFIG1_PROMDATA : 0);
			if (lanai->conf1 != tmp) {
				set_config1(tmp);
				udelay(5);	/* Let new data settle */