ATM: misplaced parentheses?

Add missing parentheses

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Roel Kluin and committed by
David S. Miller
858671f8 57e8f26a

+1 -1
+1 -1
drivers/atm/lanai.c
··· 901 901 clock_l(); udelay(5); 902 902 for (i = 128; i != 0; i >>= 1) { /* write command out */ 903 903 tmp = (lanai->conf1 & ~CONFIG1_PROMDATA) | 904 - (data & i) ? CONFIG1_PROMDATA : 0; 904 + ((data & i) ? CONFIG1_PROMDATA : 0); 905 905 if (lanai->conf1 != tmp) { 906 906 set_config1(tmp); 907 907 udelay(5); /* Let new data settle */