mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
sundance: missing parentheses?
Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9df8f4e3ee
commit
62660e2808
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue