sundance: 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 62660e28 9df8f4e3

+1 -1
+1 -1
drivers/net/sundance.c
··· 909 909 printk(KERN_INFO "%s: Setting %s-duplex based on MII #%d " 910 910 "negotiated capability %4.4x.\n", dev->name, 911 911 duplex ? "full" : "half", np->phys[0], negotiated); 912 - iowrite16(ioread16(ioaddr + MACCtrl0) | duplex ? 0x20 : 0, ioaddr + MACCtrl0); 912 + iowrite16(ioread16(ioaddr + MACCtrl0) | (duplex ? 0x20 : 0), ioaddr + MACCtrl0); 913 913 } 914 914 } 915 915