diff options
Diffstat (limited to 'drivers/net/e1000/e1000.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index 3042d33e2d4d..f411bbb44f86 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h | |||
@@ -68,7 +68,6 @@ | |||
68 | #ifdef NETIF_F_TSO | 68 | #ifdef NETIF_F_TSO |
69 | #include <net/checksum.h> | 69 | #include <net/checksum.h> |
70 | #endif | 70 | #endif |
71 | #include <linux/workqueue.h> | ||
72 | #include <linux/mii.h> | 71 | #include <linux/mii.h> |
73 | #include <linux/ethtool.h> | 72 | #include <linux/ethtool.h> |
74 | #include <linux/if_vlan.h> | 73 | #include <linux/if_vlan.h> |
@@ -143,6 +142,7 @@ struct e1000_adapter; | |||
143 | 142 | ||
144 | #define AUTO_ALL_MODES 0 | 143 | #define AUTO_ALL_MODES 0 |
145 | #define E1000_EEPROM_82544_APM 0x0004 | 144 | #define E1000_EEPROM_82544_APM 0x0004 |
145 | #define E1000_EEPROM_ICH8_APME 0x0004 | ||
146 | #define E1000_EEPROM_APME 0x0400 | 146 | #define E1000_EEPROM_APME 0x0400 |
147 | 147 | ||
148 | #ifndef E1000_MASTER_SLAVE | 148 | #ifndef E1000_MASTER_SLAVE |
@@ -254,7 +254,6 @@ struct e1000_adapter { | |||
254 | spinlock_t tx_queue_lock; | 254 | spinlock_t tx_queue_lock; |
255 | #endif | 255 | #endif |
256 | atomic_t irq_sem; | 256 | atomic_t irq_sem; |
257 | struct work_struct watchdog_task; | ||
258 | struct work_struct reset_task; | 257 | struct work_struct reset_task; |
259 | uint8_t fc_autoneg; | 258 | uint8_t fc_autoneg; |
260 | 259 | ||
@@ -339,8 +338,14 @@ struct e1000_adapter { | |||
339 | #ifdef NETIF_F_TSO | 338 | #ifdef NETIF_F_TSO |
340 | boolean_t tso_force; | 339 | boolean_t tso_force; |
341 | #endif | 340 | #endif |
341 | boolean_t smart_power_down; /* phy smart power down */ | ||
342 | unsigned long flags; | ||
342 | }; | 343 | }; |
343 | 344 | ||
345 | enum e1000_state_t { | ||
346 | __E1000_DRIVER_TESTING, | ||
347 | __E1000_RESETTING, | ||
348 | }; | ||
344 | 349 | ||
345 | /* e1000_main.c */ | 350 | /* e1000_main.c */ |
346 | extern char e1000_driver_name[]; | 351 | extern char e1000_driver_name[]; |
@@ -348,6 +353,7 @@ extern char e1000_driver_version[]; | |||
348 | int e1000_up(struct e1000_adapter *adapter); | 353 | int e1000_up(struct e1000_adapter *adapter); |
349 | void e1000_down(struct e1000_adapter *adapter); | 354 | void e1000_down(struct e1000_adapter *adapter); |
350 | void e1000_reset(struct e1000_adapter *adapter); | 355 | void e1000_reset(struct e1000_adapter *adapter); |
356 | void e1000_reinit_locked(struct e1000_adapter *adapter); | ||
351 | int e1000_setup_all_tx_resources(struct e1000_adapter *adapter); | 357 | int e1000_setup_all_tx_resources(struct e1000_adapter *adapter); |
352 | void e1000_free_all_tx_resources(struct e1000_adapter *adapter); | 358 | void e1000_free_all_tx_resources(struct e1000_adapter *adapter); |
353 | int e1000_setup_all_rx_resources(struct e1000_adapter *adapter); | 359 | int e1000_setup_all_rx_resources(struct e1000_adapter *adapter); |