diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2010-02-19 01:03:02 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-02-19 15:52:49 -0500 |
commit | 4a6547c748229ba0425713b4adeb0f2d4000da9e (patch) | |
tree | 257c45169b278fd9e49cb629afb53763a334ceea /drivers | |
parent | 5c0ba62fd4b2dce08055a89600f1d834f9f0fe9e (diff) |
iwl3945: remove STATUS macros from header
iwl3945 includes iwl-core.h in which these STATUS flags are already
defined. This also removes a potential confusing definition with iwlcore
using STATUS_MODE_PENDING with value 18 and iwl3945 defining (but not
using) STATUS_CONF_PENDING for value 18.
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945.h | 18 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 2 |
3 files changed, 2 insertions, 20 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 5913418872ec..521584b99fd1 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
@@ -45,8 +45,8 @@ | |||
45 | #include "iwl-sta.h" | 45 | #include "iwl-sta.h" |
46 | #include "iwl-3945.h" | 46 | #include "iwl-3945.h" |
47 | #include "iwl-eeprom.h" | 47 | #include "iwl-eeprom.h" |
48 | #include "iwl-helpers.h" | ||
49 | #include "iwl-core.h" | 48 | #include "iwl-core.h" |
49 | #include "iwl-helpers.h" | ||
50 | #include "iwl-led.h" | 50 | #include "iwl-led.h" |
51 | #include "iwl-3945-led.h" | 51 | #include "iwl-3945-led.h" |
52 | 52 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.h b/drivers/net/wireless/iwlwifi/iwl-3945.h index db4137d9a3ab..ae94babe595b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945.h | |||
@@ -171,24 +171,6 @@ struct iwl3945_frame { | |||
171 | 171 | ||
172 | #define SCAN_INTERVAL 100 | 172 | #define SCAN_INTERVAL 100 |
173 | 173 | ||
174 | #define STATUS_HCMD_ACTIVE 0 /* host command in progress */ | ||
175 | #define STATUS_HCMD_SYNC_ACTIVE 1 /* sync host command in progress */ | ||
176 | #define STATUS_INT_ENABLED 2 | ||
177 | #define STATUS_RF_KILL_HW 3 | ||
178 | #define STATUS_INIT 5 | ||
179 | #define STATUS_ALIVE 6 | ||
180 | #define STATUS_READY 7 | ||
181 | #define STATUS_TEMPERATURE 8 | ||
182 | #define STATUS_GEO_CONFIGURED 9 | ||
183 | #define STATUS_EXIT_PENDING 10 | ||
184 | #define STATUS_STATISTICS 12 | ||
185 | #define STATUS_SCANNING 13 | ||
186 | #define STATUS_SCAN_ABORTING 14 | ||
187 | #define STATUS_SCAN_HW 15 | ||
188 | #define STATUS_POWER_PMI 16 | ||
189 | #define STATUS_FW_ERROR 17 | ||
190 | #define STATUS_CONF_PENDING 18 | ||
191 | |||
192 | #define MAX_TID_COUNT 9 | 174 | #define MAX_TID_COUNT 9 |
193 | 175 | ||
194 | #define IWL_INVALID_RATE 0xFF | 176 | #define IWL_INVALID_RATE 0xFF |
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 3df488a8cf75..0e5a1ca30334 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -53,8 +53,8 @@ | |||
53 | #include "iwl-commands.h" | 53 | #include "iwl-commands.h" |
54 | #include "iwl-sta.h" | 54 | #include "iwl-sta.h" |
55 | #include "iwl-3945.h" | 55 | #include "iwl-3945.h" |
56 | #include "iwl-helpers.h" | ||
57 | #include "iwl-core.h" | 56 | #include "iwl-core.h" |
57 | #include "iwl-helpers.h" | ||
58 | #include "iwl-dev.h" | 58 | #include "iwl-dev.h" |
59 | #include "iwl-spectrum.h" | 59 | #include "iwl-spectrum.h" |
60 | 60 | ||