aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/cris
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@xenotime.net>2012-08-03 14:38:07 +0000
committerDavid S. Miller <davem@davemloft.net>2012-08-03 20:32:31 -0700
commitff6e1225957cce9e93b8d84dc240e5a44094d0ec (patch)
treeb49d02f73ef1205e7c179773b52b279836a78ca0 /drivers/net/cris
parentf3a1ef9cee4812e2d08c855eb373f0d83433e34c (diff)
cris: fix eth_v10.c build error
Fix build error on cris (not tested, no toolchain here): drivers/net/cris/eth_v10.c: error: too many arguments to function 'e100rxtx_interrupt' Reported-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Cc: Mikael Starvik <starvik@axis.com> Cc: Jesper Nilsson <jesper.nilsson@axis.com> Cc: linux-cris-kernel@axis.com Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cris')
-rw-r--r--drivers/net/cris/eth_v10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/cris/eth_v10.c b/drivers/net/cris/eth_v10.c
index f0c8bd54ce29..021d69c5d9bc 100644
--- a/drivers/net/cris/eth_v10.c
+++ b/drivers/net/cris/eth_v10.c
@@ -1712,7 +1712,7 @@ e100_set_network_leds(int active)
static void
e100_netpoll(struct net_device* netdev)
{
- e100rxtx_interrupt(NETWORK_DMA_TX_IRQ_NBR, netdev, NULL);
+ e100rxtx_interrupt(NETWORK_DMA_TX_IRQ_NBR, netdev);
}
#endif