mirror of
https://github.com/torvalds/linux.git
synced 2024-12-21 10:31:54 +00:00
net/macb: tx status is more than 8 bits now
On some revision of GEM, TSR status register has more information. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Tested-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
83cdbc7da7
commit
cde30a857c
@ -314,7 +314,7 @@ static void macb_tx(struct macb *bp)
|
||||
status = macb_readl(bp, TSR);
|
||||
macb_writel(bp, TSR, status);
|
||||
|
||||
netdev_vdbg(bp->dev, "macb_tx status = %02lx\n", (unsigned long)status);
|
||||
netdev_vdbg(bp->dev, "macb_tx status = 0x%03lx\n", (unsigned long)status);
|
||||
|
||||
if (status & (MACB_BIT(UND) | MACB_BIT(TSR_RLE))) {
|
||||
int i;
|
||||
|
Loading…
Reference in New Issue
Block a user