From 3a9f0e0f84d91b8b788d98a041d0da96c63b568f Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 25 Jan 2011 14:19:54 +0000 Subject: [PATCH] [infiniband] Indicate that device does not support interrupts Signed-off-by: Michael Brown --- src/drivers/net/ipoib.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/drivers/net/ipoib.c b/src/drivers/net/ipoib.c index 09c89bdc..4917b58e 100644 --- a/src/drivers/net/ipoib.c +++ b/src/drivers/net/ipoib.c @@ -537,17 +537,6 @@ static void ipoib_poll ( struct net_device *netdev ) { ib_poll_eq ( ibdev ); } -/** - * Enable/disable interrupts on IPoIB network device - * - * @v netdev Network device - * @v enable Interrupts should be enabled - */ -static void ipoib_irq ( struct net_device *netdev __unused, - int enable __unused ) { - /* No implementation */ -} - /** * Handle IPv4 broadcast multicast group join completion * @@ -730,7 +719,6 @@ static struct net_device_operations ipoib_operations = { .close = ipoib_close, .transmit = ipoib_transmit, .poll = ipoib_poll, - .irq = ipoib_irq, }; /**