david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[infiniband] Indicate that device does not support interrupts

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2011-01-25 14:19:54 +00:00
parent 025b1cb3f8
commit 3a9f0e0f84
1 changed files with 0 additions and 12 deletions

View File

@ -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,
};
/**