[hermon] 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:20:26 +00:00
parent 3a9f0e0f84
commit 785335996f

View File

@@ -2319,17 +2319,6 @@ static void hermon_eth_poll ( struct net_device *netdev ) {
ib_poll_eq ( ibdev ); ib_poll_eq ( ibdev );
} }
/**
* Enable/disable interrupts on Hermon Ethernet device
*
* @v netdev Network device
* @v enable Interrupts should be enabled
*/
static void hermon_eth_irq ( struct net_device *netdev __unused,
int enable __unused ) {
/* No implementation */
}
/** /**
* Open Hermon Ethernet device * Open Hermon Ethernet device
* *
@@ -2469,7 +2458,6 @@ static struct net_device_operations hermon_eth_operations = {
.close = hermon_eth_close, .close = hermon_eth_close,
.transmit = hermon_eth_transmit, .transmit = hermon_eth_transmit,
.poll = hermon_eth_poll, .poll = hermon_eth_poll,
.irq = hermon_eth_irq,
}; };
/** /**