Commit 8e73fb03 authored by Jes Sorensen's avatar Jes Sorensen Committed by Jeff Garzik

acenic net drvr bug fix: remove '=' typo in intr mask argument to writel()

parent 3319d0af
......@@ -770,7 +770,7 @@ static inline void ace_unmask_irq(struct net_device *dev)
if (ACE_IS_TIGON_I(ap))
writel(0, &regs->MaskInt);
else
writel(readl(&regs->HostCtrl) &= ~MASK_INTS, &regs->HostCtrl);
writel(readl(&regs->HostCtrl) & ~MASK_INTS, &regs->HostCtrl);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment