diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-03-30 08:49:41 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-03-30 08:49:41 -0400 |
commit | 12e22e8e60add9e1ccd61509ab7fd6fc1c214c52 (patch) | |
tree | 6b7df40ae8aca0a2d0d937136c780ae66bcafcb4 /drivers/net/meth.c | |
parent | 2da0ba2d2768baa0c5c502d1f53505dc905a06e3 (diff) |
MIPS: Stop using <asm-generic/int-l64.h>.
This fixes a few warnings - and triggers a few new ones which the rest of
this patch fixes.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers/net/meth.c')
-rw-r--r-- | drivers/net/meth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/meth.c b/drivers/net/meth.c index c336a1f42510..aa08987f6e81 100644 --- a/drivers/net/meth.c +++ b/drivers/net/meth.c | |||
@@ -398,7 +398,7 @@ static void meth_rx(struct net_device* dev, unsigned long int_status) | |||
398 | int len = (status & 0xffff) - 4; /* omit CRC */ | 398 | int len = (status & 0xffff) - 4; /* omit CRC */ |
399 | /* length sanity check */ | 399 | /* length sanity check */ |
400 | if (len < 60 || len > 1518) { | 400 | if (len < 60 || len > 1518) { |
401 | printk(KERN_DEBUG "%s: bogus packet size: %ld, status=%#2lx.\n", | 401 | printk(KERN_DEBUG "%s: bogus packet size: %ld, status=%#2Lx.\n", |
402 | dev->name, priv->rx_write, | 402 | dev->name, priv->rx_write, |
403 | priv->rx_ring[priv->rx_write]->status.raw); | 403 | priv->rx_ring[priv->rx_write]->status.raw); |
404 | dev->stats.rx_errors++; | 404 | dev->stats.rx_errors++; |