diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-08-18 16:07:57 -0400 |
---|---|---|
committer | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-15 05:21:47 -0500 |
commit | 9406f79775a5374b932ac45ae9e84a71032a9d33 (patch) | |
tree | f832668c069682fb7d55c0b514aff97fe0e03b11 /drivers/net/wireless/iwlegacy/iwl4965-base.c | |
parent | 58de00a464f1e7cf0b108341dc6cc49276d19d7a (diff) |
iwlegacy: remove il argument from IWL_ERR/INFO/WARN/CRIT
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Diffstat (limited to 'drivers/net/wireless/iwlegacy/iwl4965-base.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl4965-base.c | 132 |
1 files changed, 66 insertions, 66 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl4965-base.c b/drivers/net/wireless/iwlegacy/iwl4965-base.c index 88dc8db3d661..df7e0a484dfe 100644 --- a/drivers/net/wireless/iwlegacy/iwl4965-base.c +++ b/drivers/net/wireless/iwlegacy/iwl4965-base.c | |||
@@ -115,7 +115,7 @@ static void il4965_clear_free_frames(struct il_priv *il) | |||
115 | } | 115 | } |
116 | 116 | ||
117 | if (il->frames_count) { | 117 | if (il->frames_count) { |
118 | IL_WARN(il, "%d frames still in use. Did we lose one?\n", | 118 | IL_WARN("%d frames still in use. Did we lose one?\n", |
119 | il->frames_count); | 119 | il->frames_count); |
120 | il->frames_count = 0; | 120 | il->frames_count = 0; |
121 | } | 121 | } |
@@ -128,7 +128,7 @@ static struct il_frame *il4965_get_free_frame(struct il_priv *il) | |||
128 | if (list_empty(&il->free_frames)) { | 128 | if (list_empty(&il->free_frames)) { |
129 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); | 129 | frame = kzalloc(sizeof(*frame), GFP_KERNEL); |
130 | if (!frame) { | 130 | if (!frame) { |
131 | IL_ERR(il, "Could not allocate frame!\n"); | 131 | IL_ERR("Could not allocate frame!\n"); |
132 | return NULL; | 132 | return NULL; |
133 | } | 133 | } |
134 | 134 | ||
@@ -188,7 +188,7 @@ static void il4965_set_beacon_tim(struct il_priv *il, | |||
188 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); | 188 | tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx); |
189 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; | 189 | tx_beacon_cmd->tim_size = beacon[tim_idx+1]; |
190 | } else | 190 | } else |
191 | IL_WARN(il, "Unable to find TIM Element in beacon\n"); | 191 | IL_WARN("Unable to find TIM Element in beacon\n"); |
192 | } | 192 | } |
193 | 193 | ||
194 | static unsigned int il4965_hw_get_beacon_cmd(struct il_priv *il, | 194 | static unsigned int il4965_hw_get_beacon_cmd(struct il_priv *il, |
@@ -206,7 +206,7 @@ static unsigned int il4965_hw_get_beacon_cmd(struct il_priv *il, | |||
206 | lockdep_assert_held(&il->mutex); | 206 | lockdep_assert_held(&il->mutex); |
207 | 207 | ||
208 | if (!il->beacon_ctx) { | 208 | if (!il->beacon_ctx) { |
209 | IL_ERR(il, "trying to build beacon w/o beacon context!\n"); | 209 | IL_ERR("trying to build beacon w/o beacon context!\n"); |
210 | return 0; | 210 | return 0; |
211 | } | 211 | } |
212 | 212 | ||
@@ -254,14 +254,14 @@ int il4965_send_beacon_cmd(struct il_priv *il) | |||
254 | 254 | ||
255 | frame = il4965_get_free_frame(il); | 255 | frame = il4965_get_free_frame(il); |
256 | if (!frame) { | 256 | if (!frame) { |
257 | IL_ERR(il, "Could not obtain free frame buffer for beacon " | 257 | IL_ERR("Could not obtain free frame buffer for beacon " |
258 | "command.\n"); | 258 | "command.\n"); |
259 | return -ENOMEM; | 259 | return -ENOMEM; |
260 | } | 260 | } |
261 | 261 | ||
262 | frame_size = il4965_hw_get_beacon_cmd(il, frame); | 262 | frame_size = il4965_hw_get_beacon_cmd(il, frame); |
263 | if (!frame_size) { | 263 | if (!frame_size) { |
264 | IL_ERR(il, "Error configuring the beacon command\n"); | 264 | IL_ERR("Error configuring the beacon command\n"); |
265 | il4965_free_frame(il, frame); | 265 | il4965_free_frame(il, frame); |
266 | return -EINVAL; | 266 | return -EINVAL; |
267 | } | 267 | } |
@@ -336,7 +336,7 @@ void il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq) | |||
336 | num_tbs = il4965_tfd_get_num_tbs(tfd); | 336 | num_tbs = il4965_tfd_get_num_tbs(tfd); |
337 | 337 | ||
338 | if (num_tbs >= IL_NUM_OF_TBS) { | 338 | if (num_tbs >= IL_NUM_OF_TBS) { |
339 | IL_ERR(il, "Too many chunks: %i\n", num_tbs); | 339 | IL_ERR("Too many chunks: %i\n", num_tbs); |
340 | /* @todo issue fatal error, it is quite serious situation */ | 340 | /* @todo issue fatal error, it is quite serious situation */ |
341 | return; | 341 | return; |
342 | } | 342 | } |
@@ -388,14 +388,14 @@ int il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, | |||
388 | 388 | ||
389 | /* Each TFD can point to a maximum 20 Tx buffers */ | 389 | /* Each TFD can point to a maximum 20 Tx buffers */ |
390 | if (num_tbs >= IL_NUM_OF_TBS) { | 390 | if (num_tbs >= IL_NUM_OF_TBS) { |
391 | IL_ERR(il, "Error can not send more than %d chunks\n", | 391 | IL_ERR("Error can not send more than %d chunks\n", |
392 | IL_NUM_OF_TBS); | 392 | IL_NUM_OF_TBS); |
393 | return -EINVAL; | 393 | return -EINVAL; |
394 | } | 394 | } |
395 | 395 | ||
396 | BUG_ON(addr & ~DMA_BIT_MASK(36)); | 396 | BUG_ON(addr & ~DMA_BIT_MASK(36)); |
397 | if (unlikely(addr & ~IL_TX_DMA_MASK)) | 397 | if (unlikely(addr & ~IL_TX_DMA_MASK)) |
398 | IL_ERR(il, "Unaligned address = %llx\n", | 398 | IL_ERR("Unaligned address = %llx\n", |
399 | (unsigned long long)addr); | 399 | (unsigned long long)addr); |
400 | 400 | ||
401 | il4965_tfd_set_tb(tfd, num_tbs, addr, len); | 401 | il4965_tfd_set_tb(tfd, num_tbs, addr, len); |
@@ -460,7 +460,7 @@ static void il4965_rx_reply_alive(struct il_priv *il, | |||
460 | queue_delayed_work(il->workqueue, pwork, | 460 | queue_delayed_work(il->workqueue, pwork, |
461 | msecs_to_jiffies(5)); | 461 | msecs_to_jiffies(5)); |
462 | else | 462 | else |
463 | IL_WARN(il, "uCode did not respond OK.\n"); | 463 | IL_WARN("uCode did not respond OK.\n"); |
464 | } | 464 | } |
465 | 465 | ||
466 | /** | 466 | /** |
@@ -725,7 +725,7 @@ void il4965_rx_handle(struct il_priv *il) | |||
725 | if (rxb->page) | 725 | if (rxb->page) |
726 | il_tx_cmd_complete(il, rxb); | 726 | il_tx_cmd_complete(il, rxb); |
727 | else | 727 | else |
728 | IL_WARN(il, "Claim null rxb?\n"); | 728 | IL_WARN("Claim null rxb?\n"); |
729 | } | 729 | } |
730 | 730 | ||
731 | /* Reuse the page if possible. For notification packets and | 731 | /* Reuse the page if possible. For notification packets and |
@@ -818,7 +818,7 @@ static void il4965_irq_tasklet(struct il_priv *il) | |||
818 | 818 | ||
819 | /* Now service all interrupt bits discovered above. */ | 819 | /* Now service all interrupt bits discovered above. */ |
820 | if (inta & CSR_INT_BIT_HW_ERR) { | 820 | if (inta & CSR_INT_BIT_HW_ERR) { |
821 | IL_ERR(il, "Hardware error detected. Restarting.\n"); | 821 | IL_ERR("Hardware error detected. Restarting.\n"); |
822 | 822 | ||
823 | /* Tell the device to stop sending interrupts */ | 823 | /* Tell the device to stop sending interrupts */ |
824 | il_disable_interrupts(il); | 824 | il_disable_interrupts(il); |
@@ -857,7 +857,7 @@ static void il4965_irq_tasklet(struct il_priv *il) | |||
857 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) | 857 | CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)) |
858 | hw_rf_kill = 1; | 858 | hw_rf_kill = 1; |
859 | 859 | ||
860 | IL_WARN(il, "RF_KILL bit toggled to %s.\n", | 860 | IL_WARN("RF_KILL bit toggled to %s.\n", |
861 | hw_rf_kill ? "disable radio" : "enable radio"); | 861 | hw_rf_kill ? "disable radio" : "enable radio"); |
862 | 862 | ||
863 | il->isr_stats.rfkill++; | 863 | il->isr_stats.rfkill++; |
@@ -880,14 +880,14 @@ static void il4965_irq_tasklet(struct il_priv *il) | |||
880 | 880 | ||
881 | /* Chip got too hot and stopped itself */ | 881 | /* Chip got too hot and stopped itself */ |
882 | if (inta & CSR_INT_BIT_CT_KILL) { | 882 | if (inta & CSR_INT_BIT_CT_KILL) { |
883 | IL_ERR(il, "Microcode CT kill error detected.\n"); | 883 | IL_ERR("Microcode CT kill error detected.\n"); |
884 | il->isr_stats.ctkill++; | 884 | il->isr_stats.ctkill++; |
885 | handled |= CSR_INT_BIT_CT_KILL; | 885 | handled |= CSR_INT_BIT_CT_KILL; |
886 | } | 886 | } |
887 | 887 | ||
888 | /* Error detected by uCode */ | 888 | /* Error detected by uCode */ |
889 | if (inta & CSR_INT_BIT_SW_ERR) { | 889 | if (inta & CSR_INT_BIT_SW_ERR) { |
890 | IL_ERR(il, "Microcode SW error detected. " | 890 | IL_ERR("Microcode SW error detected. " |
891 | " Restarting 0x%X.\n", inta); | 891 | " Restarting 0x%X.\n", inta); |
892 | il->isr_stats.sw++; | 892 | il->isr_stats.sw++; |
893 | il_irq_handle_error(il); | 893 | il_irq_handle_error(il); |
@@ -928,14 +928,14 @@ static void il4965_irq_tasklet(struct il_priv *il) | |||
928 | } | 928 | } |
929 | 929 | ||
930 | if (inta & ~handled) { | 930 | if (inta & ~handled) { |
931 | IL_ERR(il, "Unhandled INTA bits 0x%08x\n", inta & ~handled); | 931 | IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled); |
932 | il->isr_stats.unhandled++; | 932 | il->isr_stats.unhandled++; |
933 | } | 933 | } |
934 | 934 | ||
935 | if (inta & ~(il->inta_mask)) { | 935 | if (inta & ~(il->inta_mask)) { |
936 | IL_WARN(il, "Disabled INTA bits 0x%08x were pending\n", | 936 | IL_WARN("Disabled INTA bits 0x%08x were pending\n", |
937 | inta & ~il->inta_mask); | 937 | inta & ~il->inta_mask); |
938 | IL_WARN(il, " with FH_INT = 0x%08x\n", inta_fh); | 938 | IL_WARN(" with FH_INT = 0x%08x\n", inta_fh); |
939 | } | 939 | } |
940 | 940 | ||
941 | /* Re-enable all interrupts */ | 941 | /* Re-enable all interrupts */ |
@@ -993,11 +993,11 @@ static ssize_t il4965_store_debug_level(struct device *d, | |||
993 | 993 | ||
994 | ret = strict_strtoul(buf, 0, &val); | 994 | ret = strict_strtoul(buf, 0, &val); |
995 | if (ret) | 995 | if (ret) |
996 | IL_ERR(il, "%s is not in hex or decimal form.\n", buf); | 996 | IL_ERR("%s is not in hex or decimal form.\n", buf); |
997 | else { | 997 | else { |
998 | il->debug_level = val; | 998 | il->debug_level = val; |
999 | if (il_alloc_traffic_mem(il)) | 999 | if (il_alloc_traffic_mem(il)) |
1000 | IL_ERR(il, | 1000 | IL_ERR( |
1001 | "Not enough memory to generate traffic log\n"); | 1001 | "Not enough memory to generate traffic log\n"); |
1002 | } | 1002 | } |
1003 | return strnlen(buf, count); | 1003 | return strnlen(buf, count); |
@@ -1044,11 +1044,11 @@ static ssize_t il4965_store_tx_power(struct device *d, | |||
1044 | 1044 | ||
1045 | ret = strict_strtoul(buf, 10, &val); | 1045 | ret = strict_strtoul(buf, 10, &val); |
1046 | if (ret) | 1046 | if (ret) |
1047 | IL_INFO(il, "%s is not in decimal form.\n", buf); | 1047 | IL_INFO("%s is not in decimal form.\n", buf); |
1048 | else { | 1048 | else { |
1049 | ret = il_set_tx_power(il, val, false); | 1049 | ret = il_set_tx_power(il, val, false); |
1050 | if (ret) | 1050 | if (ret) |
1051 | IL_ERR(il, "failed setting tx power (0x%d).\n", | 1051 | IL_ERR("failed setting tx power (0x%d).\n", |
1052 | ret); | 1052 | ret); |
1053 | else | 1053 | else |
1054 | ret = count; | 1054 | ret = count; |
@@ -1114,7 +1114,7 @@ static int __must_check il4965_request_firmware(struct il_priv *il, bool first) | |||
1114 | } | 1114 | } |
1115 | 1115 | ||
1116 | if (il->fw_index < il->cfg->ucode_api_min) { | 1116 | if (il->fw_index < il->cfg->ucode_api_min) { |
1117 | IL_ERR(il, "no suitable firmware found!\n"); | 1117 | IL_ERR("no suitable firmware found!\n"); |
1118 | return -ENOENT; | 1118 | return -ENOENT; |
1119 | } | 1119 | } |
1120 | 1120 | ||
@@ -1151,7 +1151,7 @@ static int il4965_load_firmware(struct il_priv *il, | |||
1151 | case 2: | 1151 | case 2: |
1152 | hdr_size = 24; | 1152 | hdr_size = 24; |
1153 | if (ucode_raw->size < hdr_size) { | 1153 | if (ucode_raw->size < hdr_size) { |
1154 | IL_ERR(il, "File size too small!\n"); | 1154 | IL_ERR("File size too small!\n"); |
1155 | return -EINVAL; | 1155 | return -EINVAL; |
1156 | } | 1156 | } |
1157 | pieces->inst_size = le32_to_cpu(ucode->v1.inst_size); | 1157 | pieces->inst_size = le32_to_cpu(ucode->v1.inst_size); |
@@ -1169,7 +1169,7 @@ static int il4965_load_firmware(struct il_priv *il, | |||
1169 | pieces->data_size + pieces->init_size + | 1169 | pieces->data_size + pieces->init_size + |
1170 | pieces->init_data_size + pieces->boot_size) { | 1170 | pieces->init_data_size + pieces->boot_size) { |
1171 | 1171 | ||
1172 | IL_ERR(il, | 1172 | IL_ERR( |
1173 | "uCode file size %d does not match expected size\n", | 1173 | "uCode file size %d does not match expected size\n", |
1174 | (int)ucode_raw->size); | 1174 | (int)ucode_raw->size); |
1175 | return -EINVAL; | 1175 | return -EINVAL; |
@@ -1214,7 +1214,7 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1214 | 1214 | ||
1215 | if (!ucode_raw) { | 1215 | if (!ucode_raw) { |
1216 | if (il->fw_index <= il->cfg->ucode_api_max) | 1216 | if (il->fw_index <= il->cfg->ucode_api_max) |
1217 | IL_ERR(il, | 1217 | IL_ERR( |
1218 | "request for firmware file '%s' failed.\n", | 1218 | "request for firmware file '%s' failed.\n", |
1219 | il->firmware_name); | 1219 | il->firmware_name); |
1220 | goto try_again; | 1220 | goto try_again; |
@@ -1225,7 +1225,7 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1225 | 1225 | ||
1226 | /* Make sure that we got at least the API version number */ | 1226 | /* Make sure that we got at least the API version number */ |
1227 | if (ucode_raw->size < 4) { | 1227 | if (ucode_raw->size < 4) { |
1228 | IL_ERR(il, "File size way too small!\n"); | 1228 | IL_ERR("File size way too small!\n"); |
1229 | goto try_again; | 1229 | goto try_again; |
1230 | } | 1230 | } |
1231 | 1231 | ||
@@ -1245,7 +1245,7 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1245 | * on the API version read from firmware header from here on forward | 1245 | * on the API version read from firmware header from here on forward |
1246 | */ | 1246 | */ |
1247 | if (api_ver < api_min || api_ver > api_max) { | 1247 | if (api_ver < api_min || api_ver > api_max) { |
1248 | IL_ERR(il, | 1248 | IL_ERR( |
1249 | "Driver unable to support your firmware API. " | 1249 | "Driver unable to support your firmware API. " |
1250 | "Driver supports v%u, firmware is v%u.\n", | 1250 | "Driver supports v%u, firmware is v%u.\n", |
1251 | api_max, api_ver); | 1251 | api_max, api_ver); |
@@ -1253,13 +1253,13 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1253 | } | 1253 | } |
1254 | 1254 | ||
1255 | if (api_ver != api_max) | 1255 | if (api_ver != api_max) |
1256 | IL_ERR(il, | 1256 | IL_ERR( |
1257 | "Firmware has old API version. Expected v%u, " | 1257 | "Firmware has old API version. Expected v%u, " |
1258 | "got v%u. New firmware can be obtained " | 1258 | "got v%u. New firmware can be obtained " |
1259 | "from http://www.intellinuxwireless.org.\n", | 1259 | "from http://www.intellinuxwireless.org.\n", |
1260 | api_max, api_ver); | 1260 | api_max, api_ver); |
1261 | 1261 | ||
1262 | IL_INFO(il, "loaded firmware version %u.%u.%u.%u\n", | 1262 | IL_INFO("loaded firmware version %u.%u.%u.%u\n", |
1263 | IL_UCODE_MAJOR(il->ucode_ver), | 1263 | IL_UCODE_MAJOR(il->ucode_ver), |
1264 | IL_UCODE_MINOR(il->ucode_ver), | 1264 | IL_UCODE_MINOR(il->ucode_ver), |
1265 | IL_UCODE_API(il->ucode_ver), | 1265 | IL_UCODE_API(il->ucode_ver), |
@@ -1294,31 +1294,31 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1294 | 1294 | ||
1295 | /* Verify that uCode images will fit in card's SRAM */ | 1295 | /* Verify that uCode images will fit in card's SRAM */ |
1296 | if (pieces.inst_size > il->hw_params.max_inst_size) { | 1296 | if (pieces.inst_size > il->hw_params.max_inst_size) { |
1297 | IL_ERR(il, "uCode instr len %Zd too large to fit in\n", | 1297 | IL_ERR("uCode instr len %Zd too large to fit in\n", |
1298 | pieces.inst_size); | 1298 | pieces.inst_size); |
1299 | goto try_again; | 1299 | goto try_again; |
1300 | } | 1300 | } |
1301 | 1301 | ||
1302 | if (pieces.data_size > il->hw_params.max_data_size) { | 1302 | if (pieces.data_size > il->hw_params.max_data_size) { |
1303 | IL_ERR(il, "uCode data len %Zd too large to fit in\n", | 1303 | IL_ERR("uCode data len %Zd too large to fit in\n", |
1304 | pieces.data_size); | 1304 | pieces.data_size); |
1305 | goto try_again; | 1305 | goto try_again; |
1306 | } | 1306 | } |
1307 | 1307 | ||
1308 | if (pieces.init_size > il->hw_params.max_inst_size) { | 1308 | if (pieces.init_size > il->hw_params.max_inst_size) { |
1309 | IL_ERR(il, "uCode init instr len %Zd too large to fit in\n", | 1309 | IL_ERR("uCode init instr len %Zd too large to fit in\n", |
1310 | pieces.init_size); | 1310 | pieces.init_size); |
1311 | goto try_again; | 1311 | goto try_again; |
1312 | } | 1312 | } |
1313 | 1313 | ||
1314 | if (pieces.init_data_size > il->hw_params.max_data_size) { | 1314 | if (pieces.init_data_size > il->hw_params.max_data_size) { |
1315 | IL_ERR(il, "uCode init data len %Zd too large to fit in\n", | 1315 | IL_ERR("uCode init data len %Zd too large to fit in\n", |
1316 | pieces.init_data_size); | 1316 | pieces.init_data_size); |
1317 | goto try_again; | 1317 | goto try_again; |
1318 | } | 1318 | } |
1319 | 1319 | ||
1320 | if (pieces.boot_size > il->hw_params.max_bsm_size) { | 1320 | if (pieces.boot_size > il->hw_params.max_bsm_size) { |
1321 | IL_ERR(il, "uCode boot instr len %Zd too large to fit in\n", | 1321 | IL_ERR("uCode boot instr len %Zd too large to fit in\n", |
1322 | pieces.boot_size); | 1322 | pieces.boot_size); |
1323 | goto try_again; | 1323 | goto try_again; |
1324 | } | 1324 | } |
@@ -1427,13 +1427,13 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1427 | 1427 | ||
1428 | err = il_dbgfs_register(il, DRV_NAME); | 1428 | err = il_dbgfs_register(il, DRV_NAME); |
1429 | if (err) | 1429 | if (err) |
1430 | IL_ERR(il, | 1430 | IL_ERR( |
1431 | "failed to create debugfs files. Ignoring error: %d\n", err); | 1431 | "failed to create debugfs files. Ignoring error: %d\n", err); |
1432 | 1432 | ||
1433 | err = sysfs_create_group(&il->pci_dev->dev.kobj, | 1433 | err = sysfs_create_group(&il->pci_dev->dev.kobj, |
1434 | &il_attribute_group); | 1434 | &il_attribute_group); |
1435 | if (err) { | 1435 | if (err) { |
1436 | IL_ERR(il, "failed to create sysfs device attributes\n"); | 1436 | IL_ERR("failed to create sysfs device attributes\n"); |
1437 | goto out_unbind; | 1437 | goto out_unbind; |
1438 | } | 1438 | } |
1439 | 1439 | ||
@@ -1450,7 +1450,7 @@ il4965_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1450 | return; | 1450 | return; |
1451 | 1451 | ||
1452 | err_pci_alloc: | 1452 | err_pci_alloc: |
1453 | IL_ERR(il, "failed to allocate pci memory\n"); | 1453 | IL_ERR("failed to allocate pci memory\n"); |
1454 | il4965_dealloc_ucode_pci(il); | 1454 | il4965_dealloc_ucode_pci(il); |
1455 | out_unbind: | 1455 | out_unbind: |
1456 | complete(&il->_4965.firmware_loading_complete); | 1456 | complete(&il->_4965.firmware_loading_complete); |
@@ -1541,7 +1541,7 @@ void il4965_dump_nic_error_log(struct il_priv *il) | |||
1541 | } | 1541 | } |
1542 | 1542 | ||
1543 | if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) { | 1543 | if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) { |
1544 | IL_ERR(il, | 1544 | IL_ERR( |
1545 | "Not valid error log pointer 0x%08X for %s uCode\n", | 1545 | "Not valid error log pointer 0x%08X for %s uCode\n", |
1546 | base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT"); | 1546 | base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT"); |
1547 | return; | 1547 | return; |
@@ -1550,8 +1550,8 @@ void il4965_dump_nic_error_log(struct il_priv *il) | |||
1550 | count = il_read_targ_mem(il, base); | 1550 | count = il_read_targ_mem(il, base); |
1551 | 1551 | ||
1552 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { | 1552 | if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) { |
1553 | IL_ERR(il, "Start IWL Error Log Dump:\n"); | 1553 | IL_ERR("Start IWL Error Log Dump:\n"); |
1554 | IL_ERR(il, "Status: 0x%08lX, count: %d\n", | 1554 | IL_ERR("Status: 0x%08lX, count: %d\n", |
1555 | il->status, count); | 1555 | il->status, count); |
1556 | } | 1556 | } |
1557 | 1557 | ||
@@ -1568,12 +1568,12 @@ void il4965_dump_nic_error_log(struct il_priv *il) | |||
1568 | time = il_read_targ_mem(il, base + 11 * sizeof(u32)); | 1568 | time = il_read_targ_mem(il, base + 11 * sizeof(u32)); |
1569 | hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32)); | 1569 | hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32)); |
1570 | 1570 | ||
1571 | IL_ERR(il, "Desc Time " | 1571 | IL_ERR("Desc Time " |
1572 | "data1 data2 line\n"); | 1572 | "data1 data2 line\n"); |
1573 | IL_ERR(il, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n", | 1573 | IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n", |
1574 | il4965_desc_lookup(desc), desc, time, data1, data2, line); | 1574 | il4965_desc_lookup(desc), desc, time, data1, data2, line); |
1575 | IL_ERR(il, "pc blink1 blink2 ilink1 ilink2 hcmd\n"); | 1575 | IL_ERR("pc blink1 blink2 ilink1 ilink2 hcmd\n"); |
1576 | IL_ERR(il, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", | 1576 | IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", |
1577 | pc, blink1, blink2, ilink1, ilink2, hcmd); | 1577 | pc, blink1, blink2, ilink1, ilink2, hcmd); |
1578 | } | 1578 | } |
1579 | 1579 | ||
@@ -1594,7 +1594,7 @@ static void il4965_rf_kill_ct_config(struct il_priv *il) | |||
1594 | ret = il_send_cmd_pdu(il, REPLY_CT_KILL_CONFIG_CMD, | 1594 | ret = il_send_cmd_pdu(il, REPLY_CT_KILL_CONFIG_CMD, |
1595 | sizeof(cmd), &cmd); | 1595 | sizeof(cmd), &cmd); |
1596 | if (ret) | 1596 | if (ret) |
1597 | IL_ERR(il, "REPLY_CT_KILL_CONFIG_CMD failed\n"); | 1597 | IL_ERR("REPLY_CT_KILL_CONFIG_CMD failed\n"); |
1598 | else | 1598 | else |
1599 | D_INFO("REPLY_CT_KILL_CONFIG_CMD " | 1599 | D_INFO("REPLY_CT_KILL_CONFIG_CMD " |
1600 | "succeeded, " | 1600 | "succeeded, " |
@@ -1740,7 +1740,7 @@ static void il4965_alive_start(struct il_priv *il) | |||
1740 | 1740 | ||
1741 | ret = il4965_alive_notify(il); | 1741 | ret = il4965_alive_notify(il); |
1742 | if (ret) { | 1742 | if (ret) { |
1743 | IL_WARN(il, | 1743 | IL_WARN( |
1744 | "Could not complete ALIVE transition [ntf]: %d\n", ret); | 1744 | "Could not complete ALIVE transition [ntf]: %d\n", ret); |
1745 | goto restart; | 1745 | goto restart; |
1746 | } | 1746 | } |
@@ -1955,12 +1955,12 @@ static int __il4965_up(struct il_priv *il) | |||
1955 | int ret; | 1955 | int ret; |
1956 | 1956 | ||
1957 | if (test_bit(STATUS_EXIT_PENDING, &il->status)) { | 1957 | if (test_bit(STATUS_EXIT_PENDING, &il->status)) { |
1958 | IL_WARN(il, "Exit pending; will not bring the NIC up\n"); | 1958 | IL_WARN("Exit pending; will not bring the NIC up\n"); |
1959 | return -EIO; | 1959 | return -EIO; |
1960 | } | 1960 | } |
1961 | 1961 | ||
1962 | if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) { | 1962 | if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) { |
1963 | IL_ERR(il, "ucode not available for device bringup\n"); | 1963 | IL_ERR("ucode not available for device bringup\n"); |
1964 | return -EIO; | 1964 | return -EIO; |
1965 | } | 1965 | } |
1966 | 1966 | ||
@@ -1975,7 +1975,7 @@ static int __il4965_up(struct il_priv *il) | |||
1975 | il4965_prepare_card_hw(il); | 1975 | il4965_prepare_card_hw(il); |
1976 | 1976 | ||
1977 | if (!il->hw_ready) { | 1977 | if (!il->hw_ready) { |
1978 | IL_WARN(il, "Exit HW not ready\n"); | 1978 | IL_WARN("Exit HW not ready\n"); |
1979 | return -EIO; | 1979 | return -EIO; |
1980 | } | 1980 | } |
1981 | 1981 | ||
@@ -1990,7 +1990,7 @@ static int __il4965_up(struct il_priv *il) | |||
1990 | wiphy_rfkill_set_hw_state(il->hw->wiphy, true); | 1990 | wiphy_rfkill_set_hw_state(il->hw->wiphy, true); |
1991 | 1991 | ||
1992 | il_enable_interrupts(il); | 1992 | il_enable_interrupts(il); |
1993 | IL_WARN(il, "Radio disabled by HW RF Kill switch\n"); | 1993 | IL_WARN("Radio disabled by HW RF Kill switch\n"); |
1994 | return 0; | 1994 | return 0; |
1995 | } | 1995 | } |
1996 | 1996 | ||
@@ -2001,7 +2001,7 @@ static int __il4965_up(struct il_priv *il) | |||
2001 | 2001 | ||
2002 | ret = il4965_hw_nic_init(il); | 2002 | ret = il4965_hw_nic_init(il); |
2003 | if (ret) { | 2003 | if (ret) { |
2004 | IL_ERR(il, "Unable to init nic\n"); | 2004 | IL_ERR("Unable to init nic\n"); |
2005 | return ret; | 2005 | return ret; |
2006 | } | 2006 | } |
2007 | 2007 | ||
@@ -2032,7 +2032,7 @@ static int __il4965_up(struct il_priv *il) | |||
2032 | ret = il->cfg->ops->lib->load_ucode(il); | 2032 | ret = il->cfg->ops->lib->load_ucode(il); |
2033 | 2033 | ||
2034 | if (ret) { | 2034 | if (ret) { |
2035 | IL_ERR(il, "Unable to set up bootstrap uCode: %d\n", | 2035 | IL_ERR("Unable to set up bootstrap uCode: %d\n", |
2036 | ret); | 2036 | ret); |
2037 | continue; | 2037 | continue; |
2038 | } | 2038 | } |
@@ -2051,7 +2051,7 @@ static int __il4965_up(struct il_priv *il) | |||
2051 | 2051 | ||
2052 | /* tried to restart and config the device for as long as our | 2052 | /* tried to restart and config the device for as long as our |
2053 | * patience could withstand */ | 2053 | * patience could withstand */ |
2054 | IL_ERR(il, "Unable to initialize device after %d attempts.\n", i); | 2054 | IL_ERR("Unable to initialize device after %d attempts.\n", i); |
2055 | return -EIO; | 2055 | return -EIO; |
2056 | } | 2056 | } |
2057 | 2057 | ||
@@ -2229,7 +2229,7 @@ static int il4965_mac_setup_register(struct il_priv *il, | |||
2229 | 2229 | ||
2230 | ret = ieee80211_register_hw(il->hw); | 2230 | ret = ieee80211_register_hw(il->hw); |
2231 | if (ret) { | 2231 | if (ret) { |
2232 | IL_ERR(il, "Failed to register hw (error %d)\n", ret); | 2232 | IL_ERR("Failed to register hw (error %d)\n", ret); |
2233 | return ret; | 2233 | return ret; |
2234 | } | 2234 | } |
2235 | il->mac80211_registered = 1; | 2235 | il->mac80211_registered = 1; |
@@ -2265,7 +2265,7 @@ int il4965_mac_start(struct ieee80211_hw *hw) | |||
2265 | UCODE_READY_TIMEOUT); | 2265 | UCODE_READY_TIMEOUT); |
2266 | if (!ret) { | 2266 | if (!ret) { |
2267 | if (!test_bit(STATUS_READY, &il->status)) { | 2267 | if (!test_bit(STATUS_READY, &il->status)) { |
2268 | IL_ERR(il, "START_ALIVE timeout after %dms.\n", | 2268 | IL_ERR("START_ALIVE timeout after %dms.\n", |
2269 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); | 2269 | jiffies_to_msecs(UCODE_READY_TIMEOUT)); |
2270 | return -ETIMEDOUT; | 2270 | return -ETIMEDOUT; |
2271 | } | 2271 | } |
@@ -2475,7 +2475,7 @@ int il4965_mac_sta_add(struct ieee80211_hw *hw, | |||
2475 | ret = il_add_station_common(il, vif_priv->ctx, sta->addr, | 2475 | ret = il_add_station_common(il, vif_priv->ctx, sta->addr, |
2476 | is_ap, sta, &sta_id); | 2476 | is_ap, sta, &sta_id); |
2477 | if (ret) { | 2477 | if (ret) { |
2478 | IL_ERR(il, "Unable to add station %pM (%d)\n", | 2478 | IL_ERR("Unable to add station %pM (%d)\n", |
2479 | sta->addr, ret); | 2479 | sta->addr, ret); |
2480 | /* Should we return success if return code is EEXIST ? */ | 2480 | /* Should we return success if return code is EEXIST ? */ |
2481 | mutex_unlock(&il->mutex); | 2481 | mutex_unlock(&il->mutex); |
@@ -2792,13 +2792,13 @@ static int il4965_init_drv(struct il_priv *il) | |||
2792 | 2792 | ||
2793 | ret = il_init_channel_map(il); | 2793 | ret = il_init_channel_map(il); |
2794 | if (ret) { | 2794 | if (ret) { |
2795 | IL_ERR(il, "initializing regulatory failed: %d\n", ret); | 2795 | IL_ERR("initializing regulatory failed: %d\n", ret); |
2796 | goto err; | 2796 | goto err; |
2797 | } | 2797 | } |
2798 | 2798 | ||
2799 | ret = il_init_geos(il); | 2799 | ret = il_init_geos(il); |
2800 | if (ret) { | 2800 | if (ret) { |
2801 | IL_ERR(il, "initializing geos failed: %d\n", ret); | 2801 | IL_ERR("initializing geos failed: %d\n", ret); |
2802 | goto err_free_channel_map; | 2802 | goto err_free_channel_map; |
2803 | } | 2803 | } |
2804 | il4965_init_hw_rates(il, il->ieee_rates); | 2804 | il4965_init_hw_rates(il, il->ieee_rates); |
@@ -2917,7 +2917,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2917 | il->inta_mask = CSR_INI_SET_MASK; | 2917 | il->inta_mask = CSR_INI_SET_MASK; |
2918 | 2918 | ||
2919 | if (il_alloc_traffic_mem(il)) | 2919 | if (il_alloc_traffic_mem(il)) |
2920 | IL_ERR(il, "Not enough memory to generate traffic log\n"); | 2920 | IL_ERR("Not enough memory to generate traffic log\n"); |
2921 | 2921 | ||
2922 | /************************** | 2922 | /************************** |
2923 | * 2. Initializing PCI bus | 2923 | * 2. Initializing PCI bus |
@@ -2942,7 +2942,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2942 | DMA_BIT_MASK(32)); | 2942 | DMA_BIT_MASK(32)); |
2943 | /* both attempts failed: */ | 2943 | /* both attempts failed: */ |
2944 | if (err) { | 2944 | if (err) { |
2945 | IL_WARN(il, "No suitable DMA available.\n"); | 2945 | IL_WARN("No suitable DMA available.\n"); |
2946 | goto out_pci_disable_device; | 2946 | goto out_pci_disable_device; |
2947 | } | 2947 | } |
2948 | } | 2948 | } |
@@ -2981,7 +2981,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2981 | il_write32(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); | 2981 | il_write32(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET); |
2982 | 2982 | ||
2983 | il4965_hw_detect(il); | 2983 | il4965_hw_detect(il); |
2984 | IL_INFO(il, "Detected %s, REV=0x%X\n", | 2984 | IL_INFO("Detected %s, REV=0x%X\n", |
2985 | il->cfg->name, il->hw_rev); | 2985 | il->cfg->name, il->hw_rev); |
2986 | 2986 | ||
2987 | /* We disable the RETRY_TIMEOUT register (0x41) to keep | 2987 | /* We disable the RETRY_TIMEOUT register (0x41) to keep |
@@ -2990,7 +2990,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2990 | 2990 | ||
2991 | il4965_prepare_card_hw(il); | 2991 | il4965_prepare_card_hw(il); |
2992 | if (!il->hw_ready) { | 2992 | if (!il->hw_ready) { |
2993 | IL_WARN(il, "Failed, HW not ready\n"); | 2993 | IL_WARN("Failed, HW not ready\n"); |
2994 | goto out_iounmap; | 2994 | goto out_iounmap; |
2995 | } | 2995 | } |
2996 | 2996 | ||
@@ -3000,7 +3000,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3000 | /* Read the EEPROM */ | 3000 | /* Read the EEPROM */ |
3001 | err = il_eeprom_init(il); | 3001 | err = il_eeprom_init(il); |
3002 | if (err) { | 3002 | if (err) { |
3003 | IL_ERR(il, "Unable to init EEPROM\n"); | 3003 | IL_ERR("Unable to init EEPROM\n"); |
3004 | goto out_iounmap; | 3004 | goto out_iounmap; |
3005 | } | 3005 | } |
3006 | err = il4965_eeprom_check_version(il); | 3006 | err = il4965_eeprom_check_version(il); |
@@ -3020,7 +3020,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3020 | * 5. Setup HW constants | 3020 | * 5. Setup HW constants |
3021 | ************************/ | 3021 | ************************/ |
3022 | if (il4965_set_hw_params(il)) { | 3022 | if (il4965_set_hw_params(il)) { |
3023 | IL_ERR(il, "failed to set hw parameters\n"); | 3023 | IL_ERR("failed to set hw parameters\n"); |
3024 | goto out_free_eeprom; | 3024 | goto out_free_eeprom; |
3025 | } | 3025 | } |
3026 | 3026 | ||
@@ -3045,7 +3045,7 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
3045 | err = request_irq(il->pci_dev->irq, il_isr, | 3045 | err = request_irq(il->pci_dev->irq, il_isr, |
3046 | IRQF_SHARED, DRV_NAME, il); | 3046 | IRQF_SHARED, DRV_NAME, il); |
3047 | if (err) { | 3047 | if (err) { |
3048 | IL_ERR(il, "Error allocating IRQ %d\n", il->pci_dev->irq); | 3048 | IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq); |
3049 | goto out_disable_msi; | 3049 | goto out_disable_msi; |
3050 | } | 3050 | } |
3051 | 3051 | ||