aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sundance.c
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-02-18 10:19:50 +0100
committerDavid S. Miller <davem@davemloft.net>2009-02-20 00:35:45 -0800
commit62660e28084df3d8067ab855f326d3027808c569 (patch)
tree08dc1e789f0a6e6fb4c0cf4bcbc47f413b08e4bc /drivers/net/sundance.c
parent9df8f4e3ee760c14211a5f484e9ee4f0bc0c566b (diff)
downloadlinux-62660e28084df3d8067ab855f326d3027808c569.tar.gz
sundance: missing parentheses?
Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sundance.c')
-rw-r--r--drivers/net/sundance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sundance.c b/drivers/net/sundance.c
index feaf0e0577d77..43695b76606fd 100644
--- a/drivers/net/sundance.c
+++ b/drivers/net/sundance.c
@@ -909,7 +909,7 @@ static void check_duplex(struct net_device *dev)
printk(KERN_INFO "%s: Setting %s-duplex based on MII #%d "
"negotiated capability %4.4x.\n", dev->name,
duplex ? "full" : "half", np->phys[0], negotiated);
- iowrite16(ioread16(ioaddr + MACCtrl0) | duplex ? 0x20 : 0, ioaddr + MACCtrl0);
+ iowrite16(ioread16(ioaddr + MACCtrl0) | (duplex ? 0x20 : 0), ioaddr + MACCtrl0);
}
}