summaryrefslogtreecommitdiffstats
path: root/src/drivers
diff options
context:
space:
mode:
authorMichael Brown2011-01-25 15:20:26 +0100
committerMichael Brown2011-01-25 15:25:09 +0100
commit785335996f5d015c5559d76c57a2986457c71bc7 (patch)
tree558898e72d1c68822c613d21c7fd91345707d9cf /src/drivers
parent[infiniband] Indicate that device does not support interrupts (diff)
downloadipxe-785335996f5d015c5559d76c57a2986457c71bc7.tar.gz
ipxe-785335996f5d015c5559d76c57a2986457c71bc7.tar.xz
ipxe-785335996f5d015c5559d76c57a2986457c71bc7.zip
[hermon] Indicate that device does not support interrupts
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/infiniband/hermon.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/drivers/infiniband/hermon.c b/src/drivers/infiniband/hermon.c
index 63cf7d8ce..6e3955af7 100644
--- a/src/drivers/infiniband/hermon.c
+++ b/src/drivers/infiniband/hermon.c
@@ -2320,17 +2320,6 @@ static void hermon_eth_poll ( struct net_device *netdev ) {
}
/**
- * 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
*
* @v netdev Network device
@@ -2469,7 +2458,6 @@ static struct net_device_operations hermon_eth_operations = {
.close = hermon_eth_close,
.transmit = hermon_eth_transmit,
.poll = hermon_eth_poll,
- .irq = hermon_eth_irq,
};
/**