diff options
author | Jesse Brandeburg <jesse.brandeburg@intel.com> | 2007-01-18 18:25:21 +0100 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-05 22:58:41 +0100 |
commit | b5fc8f0c43d388d76ebbb5650b20f4ce4420a5ad (patch) | |
tree | 918c5acec2c262da60f16570053edb86bb850618 /drivers/net/e1000/e1000.h | |
parent | e1000: clean up debug output defines (diff) | |
download | linux-b5fc8f0c43d388d76ebbb5650b20f4ce4420a5ad.tar.xz linux-b5fc8f0c43d388d76ebbb5650b20f4ce4420a5ad.zip |
e1000: Fix MSI only interrupt handler routine
Unfortunately the read-free MSI interrupt handler needs to flush write
the icr register and thus we can't be read-free. Our MSI irq routine
thus becomes a lot more simpler since we don't need to track link state
anymore.
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index f091042b146e..8e7acb08d9a3 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h @@ -257,7 +257,6 @@ struct e1000_adapter { spinlock_t tx_queue_lock; #endif atomic_t irq_sem; - unsigned int detect_link; unsigned int total_tx_bytes; unsigned int total_tx_packets; unsigned int total_rx_bytes; |