projects
/
platform
/
kernel
/
kernel-mfld-blackbay.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57e8f26
)
ATM: misplaced parentheses?
author
Roel Kluin
<roel.kluin@gmail.com>
Thu, 19 Feb 2009 01:41:38 +0000
(17:41 -0800)
committer
David S. Miller
<davem@davemloft.net>
Thu, 19 Feb 2009 01:41:38 +0000
(17:41 -0800)
Add missing parentheses
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/atm/lanai.c
patch
|
blob
|
history
diff --git
a/drivers/atm/lanai.c
b/drivers/atm/lanai.c
index
144a49f
..
8733a2e
100644
(file)
--- a/
drivers/atm/lanai.c
+++ b/
drivers/atm/lanai.c
@@
-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 */