diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi')
-rw-r--r-- | drivers/net/wireless/iwlwifi/Kconfig | 4 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 4 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl4965-base.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/iwlwifi/Kconfig b/drivers/net/wireless/iwlwifi/Kconfig index 4bdb75ecb170..c26ca749fc1e 100644 --- a/drivers/net/wireless/iwlwifi/Kconfig +++ b/drivers/net/wireless/iwlwifi/Kconfig | |||
@@ -32,7 +32,7 @@ config IWL4965 | |||
32 | runs. | 32 | runs. |
33 | 33 | ||
34 | If you want to compile the driver as a module ( = code which can be | 34 | If you want to compile the driver as a module ( = code which can be |
35 | inserted in and remvoed from the running kernel whenever you want), | 35 | inserted in and removed from the running kernel whenever you want), |
36 | say M here and read <file:Documentation/kbuild/modules.txt>. The | 36 | say M here and read <file:Documentation/kbuild/modules.txt>. The |
37 | module will be called iwl4965.ko. | 37 | module will be called iwl4965.ko. |
38 | 38 | ||
@@ -118,7 +118,7 @@ config IWL3945 | |||
118 | runs. | 118 | runs. |
119 | 119 | ||
120 | If you want to compile the driver as a module ( = code which can be | 120 | If you want to compile the driver as a module ( = code which can be |
121 | inserted in and remvoed from the running kernel whenever you want), | 121 | inserted in and removed from the running kernel whenever you want), |
122 | say M here and read <file:Documentation/kbuild/modules.txt>. The | 122 | say M here and read <file:Documentation/kbuild/modules.txt>. The |
123 | module will be called iwl3945.ko. | 123 | module will be called iwl3945.ko. |
124 | 124 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index ce8a31103eee..ab635dcfd5d1 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -5857,11 +5857,11 @@ static void iwl3945_alive_start(struct iwl3945_priv *priv) | |||
5857 | 5857 | ||
5858 | /* At this point, the NIC is initialized and operational */ | 5858 | /* At this point, the NIC is initialized and operational */ |
5859 | priv->notif_missed_beacons = 0; | 5859 | priv->notif_missed_beacons = 0; |
5860 | set_bit(STATUS_READY, &priv->status); | ||
5861 | 5860 | ||
5862 | iwl3945_reg_txpower_periodic(priv); | 5861 | iwl3945_reg_txpower_periodic(priv); |
5863 | 5862 | ||
5864 | IWL_DEBUG_INFO("ALIVE processing complete.\n"); | 5863 | IWL_DEBUG_INFO("ALIVE processing complete.\n"); |
5864 | set_bit(STATUS_READY, &priv->status); | ||
5865 | wake_up_interruptible(&priv->wait_command_queue); | 5865 | wake_up_interruptible(&priv->wait_command_queue); |
5866 | 5866 | ||
5867 | iwl3945_led_register(priv); | 5867 | iwl3945_led_register(priv); |
@@ -8175,7 +8175,7 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
8175 | return err; | 8175 | return err; |
8176 | } | 8176 | } |
8177 | 8177 | ||
8178 | static void iwl3945_pci_remove(struct pci_dev *pdev) | 8178 | static void __devexit iwl3945_pci_remove(struct pci_dev *pdev) |
8179 | { | 8179 | { |
8180 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); | 8180 | struct iwl3945_priv *priv = pci_get_drvdata(pdev); |
8181 | struct list_head *p, *q; | 8181 | struct list_head *p, *q; |
diff --git a/drivers/net/wireless/iwlwifi/iwl4965-base.c b/drivers/net/wireless/iwlwifi/iwl4965-base.c index e487432ef56e..cf56b95dd221 100644 --- a/drivers/net/wireless/iwlwifi/iwl4965-base.c +++ b/drivers/net/wireless/iwlwifi/iwl4965-base.c | |||
@@ -5712,11 +5712,11 @@ static void iwl4965_alive_start(struct iwl_priv *priv) | |||
5712 | 5712 | ||
5713 | /* At this point, the NIC is initialized and operational */ | 5713 | /* At this point, the NIC is initialized and operational */ |
5714 | priv->notif_missed_beacons = 0; | 5714 | priv->notif_missed_beacons = 0; |
5715 | set_bit(STATUS_READY, &priv->status); | ||
5716 | 5715 | ||
5717 | iwl4965_rf_kill_ct_config(priv); | 5716 | iwl4965_rf_kill_ct_config(priv); |
5718 | 5717 | ||
5719 | IWL_DEBUG_INFO("ALIVE processing complete.\n"); | 5718 | IWL_DEBUG_INFO("ALIVE processing complete.\n"); |
5719 | set_bit(STATUS_READY, &priv->status); | ||
5720 | wake_up_interruptible(&priv->wait_command_queue); | 5720 | wake_up_interruptible(&priv->wait_command_queue); |
5721 | 5721 | ||
5722 | iwl_leds_register(priv); | 5722 | iwl_leds_register(priv); |
@@ -8186,7 +8186,7 @@ static int iwl4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e | |||
8186 | return err; | 8186 | return err; |
8187 | } | 8187 | } |
8188 | 8188 | ||
8189 | static void iwl4965_pci_remove(struct pci_dev *pdev) | 8189 | static void __devexit iwl4965_pci_remove(struct pci_dev *pdev) |
8190 | { | 8190 | { |
8191 | struct iwl_priv *priv = pci_get_drvdata(pdev); | 8191 | struct iwl_priv *priv = pci_get_drvdata(pdev); |
8192 | struct list_head *p, *q; | 8192 | struct list_head *p, *q; |