diff options
26 files changed, 106 insertions, 68 deletions
diff --git a/drivers/net/wireless/ath/ath5k/ani.c b/drivers/net/wireless/ath/ath5k/ani.c index 35e93704c4ef..5c008757662b 100644 --- a/drivers/net/wireless/ath/ath5k/ani.c +++ b/drivers/net/wireless/ath/ath5k/ani.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include "ath5k.h" | 19 | #include "ath5k.h" |
18 | #include "reg.h" | 20 | #include "reg.h" |
19 | #include "debug.h" | 21 | #include "debug.h" |
@@ -728,33 +730,25 @@ void | |||
728 | ath5k_ani_print_counters(struct ath5k_hw *ah) | 730 | ath5k_ani_print_counters(struct ath5k_hw *ah) |
729 | { | 731 | { |
730 | /* clears too */ | 732 | /* clears too */ |
731 | printk(KERN_NOTICE "ACK fail\t%d\n", | 733 | pr_notice("ACK fail\t%d\n", ath5k_hw_reg_read(ah, AR5K_ACK_FAIL)); |
732 | ath5k_hw_reg_read(ah, AR5K_ACK_FAIL)); | 734 | pr_notice("RTS fail\t%d\n", ath5k_hw_reg_read(ah, AR5K_RTS_FAIL)); |
733 | printk(KERN_NOTICE "RTS fail\t%d\n", | 735 | pr_notice("RTS success\t%d\n", ath5k_hw_reg_read(ah, AR5K_RTS_OK)); |
734 | ath5k_hw_reg_read(ah, AR5K_RTS_FAIL)); | 736 | pr_notice("FCS error\t%d\n", ath5k_hw_reg_read(ah, AR5K_FCS_FAIL)); |
735 | printk(KERN_NOTICE "RTS success\t%d\n", | ||
736 | ath5k_hw_reg_read(ah, AR5K_RTS_OK)); | ||
737 | printk(KERN_NOTICE "FCS error\t%d\n", | ||
738 | ath5k_hw_reg_read(ah, AR5K_FCS_FAIL)); | ||
739 | 737 | ||
740 | /* no clear */ | 738 | /* no clear */ |
741 | printk(KERN_NOTICE "tx\t%d\n", | 739 | pr_notice("tx\t%d\n", ath5k_hw_reg_read(ah, AR5K_PROFCNT_TX)); |
742 | ath5k_hw_reg_read(ah, AR5K_PROFCNT_TX)); | 740 | pr_notice("rx\t%d\n", ath5k_hw_reg_read(ah, AR5K_PROFCNT_RX)); |
743 | printk(KERN_NOTICE "rx\t%d\n", | 741 | pr_notice("busy\t%d\n", ath5k_hw_reg_read(ah, AR5K_PROFCNT_RXCLR)); |
744 | ath5k_hw_reg_read(ah, AR5K_PROFCNT_RX)); | 742 | pr_notice("cycles\t%d\n", ath5k_hw_reg_read(ah, AR5K_PROFCNT_CYCLE)); |
745 | printk(KERN_NOTICE "busy\t%d\n", | 743 | |
746 | ath5k_hw_reg_read(ah, AR5K_PROFCNT_RXCLR)); | 744 | pr_notice("AR5K_PHYERR_CNT1\t%d\n", |
747 | printk(KERN_NOTICE "cycles\t%d\n", | 745 | ath5k_hw_reg_read(ah, AR5K_PHYERR_CNT1)); |
748 | ath5k_hw_reg_read(ah, AR5K_PROFCNT_CYCLE)); | 746 | pr_notice("AR5K_PHYERR_CNT2\t%d\n", |
749 | 747 | ath5k_hw_reg_read(ah, AR5K_PHYERR_CNT2)); | |
750 | printk(KERN_NOTICE "AR5K_PHYERR_CNT1\t%d\n", | 748 | pr_notice("AR5K_OFDM_FIL_CNT\t%d\n", |
751 | ath5k_hw_reg_read(ah, AR5K_PHYERR_CNT1)); | 749 | ath5k_hw_reg_read(ah, AR5K_OFDM_FIL_CNT)); |
752 | printk(KERN_NOTICE "AR5K_PHYERR_CNT2\t%d\n", | 750 | pr_notice("AR5K_CCK_FIL_CNT\t%d\n", |
753 | ath5k_hw_reg_read(ah, AR5K_PHYERR_CNT2)); | 751 | ath5k_hw_reg_read(ah, AR5K_CCK_FIL_CNT)); |
754 | printk(KERN_NOTICE "AR5K_OFDM_FIL_CNT\t%d\n", | ||
755 | ath5k_hw_reg_read(ah, AR5K_OFDM_FIL_CNT)); | ||
756 | printk(KERN_NOTICE "AR5K_CCK_FIL_CNT\t%d\n", | ||
757 | ath5k_hw_reg_read(ah, AR5K_CCK_FIL_CNT)); | ||
758 | } | 752 | } |
759 | 753 | ||
760 | #endif | 754 | #endif |
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h index 8d434b8f5855..954c3734da98 100644 --- a/drivers/net/wireless/ath/ath5k/ath5k.h +++ b/drivers/net/wireless/ath/ath5k/ath5k.h | |||
@@ -76,26 +76,28 @@ | |||
76 | GENERIC DRIVER DEFINITIONS | 76 | GENERIC DRIVER DEFINITIONS |
77 | \****************************/ | 77 | \****************************/ |
78 | 78 | ||
79 | #define ATH5K_PRINTF(fmt, ...) \ | 79 | #define ATH5K_PRINTF(fmt, ...) \ |
80 | printk(KERN_WARNING "%s: " fmt, __func__, ##__VA_ARGS__) | 80 | pr_warn("%s: " fmt, __func__, ##__VA_ARGS__) |
81 | 81 | ||
82 | #define ATH5K_PRINTK(_sc, _level, _fmt, ...) \ | 82 | #define ATH5K_PRINTK(_sc, _level, _fmt, ...) \ |
83 | printk(_level "ath5k %s: " _fmt, \ | 83 | printk(_level pr_fmt("%s%s" _fmt), \ |
84 | ((_sc) && (_sc)->hw) ? wiphy_name((_sc)->hw->wiphy) : "", \ | 84 | ((_sc) && (_sc)->hw) ? wiphy_name((_sc)->hw->wiphy) : "", \ |
85 | ##__VA_ARGS__) | 85 | ((_sc) && (_sc)->hw) ? ": " : "", \ |
86 | 86 | ##__VA_ARGS__) | |
87 | #define ATH5K_PRINTK_LIMIT(_sc, _level, _fmt, ...) do { \ | 87 | |
88 | if (net_ratelimit()) \ | 88 | #define ATH5K_PRINTK_LIMIT(_sc, _level, _fmt, ...) \ |
89 | ATH5K_PRINTK(_sc, _level, _fmt, ##__VA_ARGS__); \ | 89 | do { \ |
90 | } while (0) | 90 | if (net_ratelimit()) \ |
91 | ATH5K_PRINTK(_sc, _level, _fmt, ##__VA_ARGS__); \ | ||
92 | } while (0) | ||
91 | 93 | ||
92 | #define ATH5K_INFO(_sc, _fmt, ...) \ | 94 | #define ATH5K_INFO(_sc, _fmt, ...) \ |
93 | ATH5K_PRINTK(_sc, KERN_INFO, _fmt, ##__VA_ARGS__) | 95 | ATH5K_PRINTK(_sc, KERN_INFO, _fmt, ##__VA_ARGS__) |
94 | 96 | ||
95 | #define ATH5K_WARN(_sc, _fmt, ...) \ | 97 | #define ATH5K_WARN(_sc, _fmt, ...) \ |
96 | ATH5K_PRINTK_LIMIT(_sc, KERN_WARNING, _fmt, ##__VA_ARGS__) | 98 | ATH5K_PRINTK_LIMIT(_sc, KERN_WARNING, _fmt, ##__VA_ARGS__) |
97 | 99 | ||
98 | #define ATH5K_ERR(_sc, _fmt, ...) \ | 100 | #define ATH5K_ERR(_sc, _fmt, ...) \ |
99 | ATH5K_PRINTK_LIMIT(_sc, KERN_ERR, _fmt, ##__VA_ARGS__) | 101 | ATH5K_PRINTK_LIMIT(_sc, KERN_ERR, _fmt, ##__VA_ARGS__) |
100 | 102 | ||
101 | /* | 103 | /* |
diff --git a/drivers/net/wireless/ath/ath5k/attach.c b/drivers/net/wireless/ath/ath5k/attach.c index d7114c75fe9b..7106547a14dd 100644 --- a/drivers/net/wireless/ath/ath5k/attach.c +++ b/drivers/net/wireless/ath/ath5k/attach.c | |||
@@ -20,6 +20,8 @@ | |||
20 | * Attach/Detach Functions and helpers * | 20 | * Attach/Detach Functions and helpers * |
21 | \*************************************/ | 21 | \*************************************/ |
22 | 22 | ||
23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
24 | |||
23 | #include <linux/pci.h> | 25 | #include <linux/pci.h> |
24 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
25 | #include "ath5k.h" | 27 | #include "ath5k.h" |
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 0e643b016b32..a9c0503237e9 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
@@ -40,6 +40,8 @@ | |||
40 | * | 40 | * |
41 | */ | 41 | */ |
42 | 42 | ||
43 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
44 | |||
43 | #include <linux/module.h> | 45 | #include <linux/module.h> |
44 | #include <linux/delay.h> | 46 | #include <linux/delay.h> |
45 | #include <linux/dma-mapping.h> | 47 | #include <linux/dma-mapping.h> |
diff --git a/drivers/net/wireless/ath/ath5k/debug.c b/drivers/net/wireless/ath/ath5k/debug.c index 8c5ce8b0c734..9be885707e20 100644 --- a/drivers/net/wireless/ath/ath5k/debug.c +++ b/drivers/net/wireless/ath/ath5k/debug.c | |||
@@ -57,6 +57,9 @@ | |||
57 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 57 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
58 | * THE POSSIBILITY OF SUCH DAMAGES. | 58 | * THE POSSIBILITY OF SUCH DAMAGES. |
59 | */ | 59 | */ |
60 | |||
61 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
62 | |||
60 | #include <linux/export.h> | 63 | #include <linux/export.h> |
61 | #include <linux/moduleparam.h> | 64 | #include <linux/moduleparam.h> |
62 | 65 | ||
@@ -254,10 +257,10 @@ static ssize_t write_file_beacon(struct file *file, | |||
254 | 257 | ||
255 | if (strncmp(buf, "disable", 7) == 0) { | 258 | if (strncmp(buf, "disable", 7) == 0) { |
256 | AR5K_REG_DISABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE); | 259 | AR5K_REG_DISABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE); |
257 | printk(KERN_INFO "debugfs disable beacons\n"); | 260 | pr_info("debugfs disable beacons\n"); |
258 | } else if (strncmp(buf, "enable", 6) == 0) { | 261 | } else if (strncmp(buf, "enable", 6) == 0) { |
259 | AR5K_REG_ENABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE); | 262 | AR5K_REG_ENABLE_BITS(ah, AR5K_BEACON, AR5K_BEACON_ENABLE); |
260 | printk(KERN_INFO "debugfs enable beacons\n"); | 263 | pr_info("debugfs enable beacons\n"); |
261 | } | 264 | } |
262 | return count; | 265 | return count; |
263 | } | 266 | } |
@@ -457,19 +460,19 @@ static ssize_t write_file_antenna(struct file *file, | |||
457 | 460 | ||
458 | if (strncmp(buf, "diversity", 9) == 0) { | 461 | if (strncmp(buf, "diversity", 9) == 0) { |
459 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_DEFAULT); | 462 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_DEFAULT); |
460 | printk(KERN_INFO "ath5k debug: enable diversity\n"); | 463 | pr_info("debug: enable diversity\n"); |
461 | } else if (strncmp(buf, "fixed-a", 7) == 0) { | 464 | } else if (strncmp(buf, "fixed-a", 7) == 0) { |
462 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_A); | 465 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_A); |
463 | printk(KERN_INFO "ath5k debugfs: fixed antenna A\n"); | 466 | pr_info("debug: fixed antenna A\n"); |
464 | } else if (strncmp(buf, "fixed-b", 7) == 0) { | 467 | } else if (strncmp(buf, "fixed-b", 7) == 0) { |
465 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_B); | 468 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_B); |
466 | printk(KERN_INFO "ath5k debug: fixed antenna B\n"); | 469 | pr_info("debug: fixed antenna B\n"); |
467 | } else if (strncmp(buf, "clear", 5) == 0) { | 470 | } else if (strncmp(buf, "clear", 5) == 0) { |
468 | for (i = 0; i < ARRAY_SIZE(ah->stats.antenna_rx); i++) { | 471 | for (i = 0; i < ARRAY_SIZE(ah->stats.antenna_rx); i++) { |
469 | ah->stats.antenna_rx[i] = 0; | 472 | ah->stats.antenna_rx[i] = 0; |
470 | ah->stats.antenna_tx[i] = 0; | 473 | ah->stats.antenna_tx[i] = 0; |
471 | } | 474 | } |
472 | printk(KERN_INFO "ath5k debug: cleared antenna stats\n"); | 475 | pr_info("debug: cleared antenna stats\n"); |
473 | } | 476 | } |
474 | return count; | 477 | return count; |
475 | } | 478 | } |
@@ -639,7 +642,7 @@ static ssize_t write_file_frameerrors(struct file *file, | |||
639 | st->txerr_fifo = 0; | 642 | st->txerr_fifo = 0; |
640 | st->txerr_filt = 0; | 643 | st->txerr_filt = 0; |
641 | st->tx_all_count = 0; | 644 | st->tx_all_count = 0; |
642 | printk(KERN_INFO "ath5k debug: cleared frameerrors stats\n"); | 645 | pr_info("debug: cleared frameerrors stats\n"); |
643 | } | 646 | } |
644 | return count; | 647 | return count; |
645 | } | 648 | } |
diff --git a/drivers/net/wireless/ath/ath5k/desc.c b/drivers/net/wireless/ath/ath5k/desc.c index f8bfa3ac2af0..77a60777909f 100644 --- a/drivers/net/wireless/ath/ath5k/desc.c +++ b/drivers/net/wireless/ath/ath5k/desc.c | |||
@@ -21,6 +21,8 @@ | |||
21 | Hardware Descriptor Functions | 21 | Hardware Descriptor Functions |
22 | \******************************/ | 22 | \******************************/ |
23 | 23 | ||
24 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
25 | |||
24 | #include "ath5k.h" | 26 | #include "ath5k.h" |
25 | #include "reg.h" | 27 | #include "reg.h" |
26 | #include "debug.h" | 28 | #include "debug.h" |
diff --git a/drivers/net/wireless/ath/ath5k/dma.c b/drivers/net/wireless/ath/ath5k/dma.c index 5cc9aa814697..ce86f158423b 100644 --- a/drivers/net/wireless/ath/ath5k/dma.c +++ b/drivers/net/wireless/ath/ath5k/dma.c | |||
@@ -29,6 +29,8 @@ | |||
29 | * status registers (ISR). | 29 | * status registers (ISR). |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
33 | |||
32 | #include "ath5k.h" | 34 | #include "ath5k.h" |
33 | #include "reg.h" | 35 | #include "reg.h" |
34 | #include "debug.h" | 36 | #include "debug.h" |
diff --git a/drivers/net/wireless/ath/ath5k/eeprom.c b/drivers/net/wireless/ath/ath5k/eeprom.c index cd708c15b774..4026c906cc7b 100644 --- a/drivers/net/wireless/ath/ath5k/eeprom.c +++ b/drivers/net/wireless/ath/ath5k/eeprom.c | |||
@@ -21,6 +21,8 @@ | |||
21 | * EEPROM access functions and helpers * | 21 | * EEPROM access functions and helpers * |
22 | \*************************************/ | 22 | \*************************************/ |
23 | 23 | ||
24 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
25 | |||
24 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
25 | 27 | ||
26 | #include "ath5k.h" | 28 | #include "ath5k.h" |
diff --git a/drivers/net/wireless/ath/ath5k/initvals.c b/drivers/net/wireless/ath/ath5k/initvals.c index a1ea78e05b47..ee1c2fa8b591 100644 --- a/drivers/net/wireless/ath/ath5k/initvals.c +++ b/drivers/net/wireless/ath/ath5k/initvals.c | |||
@@ -19,6 +19,8 @@ | |||
19 | * | 19 | * |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
23 | |||
22 | #include "ath5k.h" | 24 | #include "ath5k.h" |
23 | #include "reg.h" | 25 | #include "reg.h" |
24 | #include "debug.h" | 26 | #include "debug.h" |
@@ -1574,8 +1576,7 @@ ath5k_hw_write_initvals(struct ath5k_hw *ah, u8 mode, bool skip_pcu) | |||
1574 | 1576 | ||
1575 | /* AR5K_MODE_11B */ | 1577 | /* AR5K_MODE_11B */ |
1576 | if (mode > 2) { | 1578 | if (mode > 2) { |
1577 | ATH5K_ERR(ah, | 1579 | ATH5K_ERR(ah, "unsupported channel mode: %d\n", mode); |
1578 | "unsupported channel mode: %d\n", mode); | ||
1579 | return -EINVAL; | 1580 | return -EINVAL; |
1580 | } | 1581 | } |
1581 | 1582 | ||
diff --git a/drivers/net/wireless/ath/ath5k/led.c b/drivers/net/wireless/ath/ath5k/led.c index c1151c723711..b9f708a45f4e 100644 --- a/drivers/net/wireless/ath/ath5k/led.c +++ b/drivers/net/wireless/ath/ath5k/led.c | |||
@@ -39,6 +39,8 @@ | |||
39 | * | 39 | * |
40 | */ | 40 | */ |
41 | 41 | ||
42 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
43 | |||
42 | #include <linux/pci.h> | 44 | #include <linux/pci.h> |
43 | #include "ath5k.h" | 45 | #include "ath5k.h" |
44 | 46 | ||
diff --git a/drivers/net/wireless/ath/ath5k/mac80211-ops.c b/drivers/net/wireless/ath/ath5k/mac80211-ops.c index 5c5329955414..22b80af0f47c 100644 --- a/drivers/net/wireless/ath/ath5k/mac80211-ops.c +++ b/drivers/net/wireless/ath/ath5k/mac80211-ops.c | |||
@@ -41,6 +41,8 @@ | |||
41 | * | 41 | * |
42 | */ | 42 | */ |
43 | 43 | ||
44 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
45 | |||
44 | #include <net/mac80211.h> | 46 | #include <net/mac80211.h> |
45 | #include <asm/unaligned.h> | 47 | #include <asm/unaligned.h> |
46 | 48 | ||
diff --git a/drivers/net/wireless/ath/ath5k/pci.c b/drivers/net/wireless/ath/ath5k/pci.c index 849fa060ebc4..53424e8e6d82 100644 --- a/drivers/net/wireless/ath/ath5k/pci.c +++ b/drivers/net/wireless/ath/ath5k/pci.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/nl80211.h> | 19 | #include <linux/nl80211.h> |
18 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
19 | #include <linux/pci-aspm.h> | 21 | #include <linux/pci-aspm.h> |
@@ -347,7 +349,7 @@ init_ath5k_pci(void) | |||
347 | 349 | ||
348 | ret = pci_register_driver(&ath5k_pci_driver); | 350 | ret = pci_register_driver(&ath5k_pci_driver); |
349 | if (ret) { | 351 | if (ret) { |
350 | printk(KERN_ERR "ath5k_pci: can't register pci driver\n"); | 352 | pr_err("pci: can't register pci driver\n"); |
351 | return ret; | 353 | return ret; |
352 | } | 354 | } |
353 | 355 | ||
diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c index 3a2845489a1b..8b71a2d947e0 100644 --- a/drivers/net/wireless/ath/ath5k/phy.c +++ b/drivers/net/wireless/ath/ath5k/phy.c | |||
@@ -22,6 +22,8 @@ | |||
22 | * PHY related functions * | 22 | * PHY related functions * |
23 | \***********************/ | 23 | \***********************/ |
24 | 24 | ||
25 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
26 | |||
25 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
26 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
27 | #include <asm/unaligned.h> | 29 | #include <asm/unaligned.h> |
diff --git a/drivers/net/wireless/ath/ath5k/qcu.c b/drivers/net/wireless/ath/ath5k/qcu.c index 30b50f934172..a6de200538c3 100644 --- a/drivers/net/wireless/ath/ath5k/qcu.c +++ b/drivers/net/wireless/ath/ath5k/qcu.c | |||
@@ -20,6 +20,8 @@ | |||
20 | Queue Control Unit, DCF Control Unit Functions | 20 | Queue Control Unit, DCF Control Unit Functions |
21 | \********************************************/ | 21 | \********************************************/ |
22 | 22 | ||
23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
24 | |||
23 | #include "ath5k.h" | 25 | #include "ath5k.h" |
24 | #include "reg.h" | 26 | #include "reg.h" |
25 | #include "debug.h" | 27 | #include "debug.h" |
diff --git a/drivers/net/wireless/ath/ath5k/reset.c b/drivers/net/wireless/ath/ath5k/reset.c index 200f165c0c6d..0c2dd4771c36 100644 --- a/drivers/net/wireless/ath/ath5k/reset.c +++ b/drivers/net/wireless/ath/ath5k/reset.c | |||
@@ -23,6 +23,8 @@ | |||
23 | Reset function and helpers | 23 | Reset function and helpers |
24 | \****************************/ | 24 | \****************************/ |
25 | 25 | ||
26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
27 | |||
26 | #include <asm/unaligned.h> | 28 | #include <asm/unaligned.h> |
27 | 29 | ||
28 | #include <linux/pci.h> /* To determine if a card is pci-e */ | 30 | #include <linux/pci.h> /* To determine if a card is pci-e */ |
diff --git a/drivers/net/wireless/ath/ath5k/sysfs.c b/drivers/net/wireless/ath/ath5k/sysfs.c index 9364da7bd131..04cf0ca72610 100644 --- a/drivers/net/wireless/ath/ath5k/sysfs.c +++ b/drivers/net/wireless/ath/ath5k/sysfs.c | |||
@@ -1,3 +1,5 @@ | |||
1 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
2 | |||
1 | #include <linux/device.h> | 3 | #include <linux/device.h> |
2 | #include <linux/pci.h> | 4 | #include <linux/pci.h> |
3 | 5 | ||
diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/wireless/ath/ath6kl/cfg80211.c index 00d38952b5fb..bdcc68fb1e37 100644 --- a/drivers/net/wireless/ath/ath6kl/cfg80211.c +++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c | |||
@@ -15,6 +15,8 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
19 | |||
18 | #include <linux/moduleparam.h> | 20 | #include <linux/moduleparam.h> |
19 | #include <linux/inetdevice.h> | 21 | #include <linux/inetdevice.h> |
20 | #include <linux/export.h> | 22 | #include <linux/export.h> |
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index 03cae142f178..eb7cc2f5b96f 100644 --- a/drivers/net/wireless/ath/ath6kl/init.c +++ b/drivers/net/wireless/ath/ath6kl/init.c | |||
@@ -16,6 +16,8 @@ | |||
16 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 16 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
20 | |||
19 | #include <linux/moduleparam.h> | 21 | #include <linux/moduleparam.h> |
20 | #include <linux/errno.h> | 22 | #include <linux/errno.h> |
21 | #include <linux/export.h> | 23 | #include <linux/export.h> |
diff --git a/drivers/net/wireless/ath/ath6kl/main.c b/drivers/net/wireless/ath/ath6kl/main.c index 229e1922ebe4..07071fce8a0e 100644 --- a/drivers/net/wireless/ath/ath6kl/main.c +++ b/drivers/net/wireless/ath/ath6kl/main.c | |||
@@ -15,6 +15,8 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
19 | |||
18 | #include "core.h" | 20 | #include "core.h" |
19 | #include "hif-ops.h" | 21 | #include "hif-ops.h" |
20 | #include "cfg80211.h" | 22 | #include "cfg80211.h" |
diff --git a/drivers/net/wireless/ath/ath6kl/txrx.c b/drivers/net/wireless/ath/ath6kl/txrx.c index f85353fd1792..521f0be990f1 100644 --- a/drivers/net/wireless/ath/ath6kl/txrx.c +++ b/drivers/net/wireless/ath/ath6kl/txrx.c | |||
@@ -15,6 +15,8 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
19 | |||
18 | #include "core.h" | 20 | #include "core.h" |
19 | #include "debug.h" | 21 | #include "debug.h" |
20 | 22 | ||
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_init.c b/drivers/net/wireless/ath/ath9k/htc_drv_init.c index de5ee15ee639..a2e939a280aa 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_init.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_init.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include "htc.h" | 19 | #include "htc.h" |
18 | 20 | ||
19 | MODULE_AUTHOR("Atheros Communications"); | 21 | MODULE_AUTHOR("Atheros Communications"); |
@@ -966,9 +968,7 @@ int ath9k_htc_resume(struct htc_target *htc_handle) | |||
966 | static int __init ath9k_htc_init(void) | 968 | static int __init ath9k_htc_init(void) |
967 | { | 969 | { |
968 | if (ath9k_hif_usb_init() < 0) { | 970 | if (ath9k_hif_usb_init() < 0) { |
969 | printk(KERN_ERR | 971 | pr_err("No USB devices found, driver not installed\n"); |
970 | "ath9k_htc: No USB devices found," | ||
971 | " driver not installed.\n"); | ||
972 | return -ENODEV; | 972 | return -ENODEV; |
973 | } | 973 | } |
974 | 974 | ||
@@ -979,6 +979,6 @@ module_init(ath9k_htc_init); | |||
979 | static void __exit ath9k_htc_exit(void) | 979 | static void __exit ath9k_htc_exit(void) |
980 | { | 980 | { |
981 | ath9k_hif_usb_exit(); | 981 | ath9k_hif_usb_exit(); |
982 | printk(KERN_INFO "ath9k_htc: Driver unloaded\n"); | 982 | pr_info("Driver unloaded\n"); |
983 | } | 983 | } |
984 | module_exit(ath9k_htc_exit); | 984 | module_exit(ath9k_htc_exit); |
diff --git a/drivers/net/wireless/ath/ath9k/htc_hst.c b/drivers/net/wireless/ath/ath9k/htc_hst.c index c25226a32ddc..4a9570dfba72 100644 --- a/drivers/net/wireless/ath/ath9k/htc_hst.c +++ b/drivers/net/wireless/ath/ath9k/htc_hst.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include "htc.h" | 19 | #include "htc.h" |
18 | 20 | ||
19 | static int htc_issue_send(struct htc_target *target, struct sk_buff* skb, | 21 | static int htc_issue_send(struct htc_target *target, struct sk_buff* skb, |
@@ -461,7 +463,7 @@ int ath9k_htc_hw_init(struct htc_target *target, | |||
461 | char *product, u32 drv_info) | 463 | char *product, u32 drv_info) |
462 | { | 464 | { |
463 | if (ath9k_htc_probe_device(target, dev, devid, product, drv_info)) { | 465 | if (ath9k_htc_probe_device(target, dev, devid, product, drv_info)) { |
464 | printk(KERN_ERR "Failed to initialize the device\n"); | 466 | pr_err("Failed to initialize the device\n"); |
465 | return -ENODEV; | 467 | return -ENODEV; |
466 | } | 468 | } |
467 | 469 | ||
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index b8f3423fdbf9..fc8156eb6eba 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/dma-mapping.h> | 19 | #include <linux/dma-mapping.h> |
18 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
19 | #include <linux/ath9k_platform.h> | 21 | #include <linux/ath9k_platform.h> |
@@ -867,17 +869,14 @@ static int __init ath9k_init(void) | |||
867 | /* Register rate control algorithm */ | 869 | /* Register rate control algorithm */ |
868 | error = ath_rate_control_register(); | 870 | error = ath_rate_control_register(); |
869 | if (error != 0) { | 871 | if (error != 0) { |
870 | printk(KERN_ERR | 872 | pr_err("Unable to register rate control algorithm: %d\n", |
871 | "ath9k: Unable to register rate control " | 873 | error); |
872 | "algorithm: %d\n", | ||
873 | error); | ||
874 | goto err_out; | 874 | goto err_out; |
875 | } | 875 | } |
876 | 876 | ||
877 | error = ath_pci_init(); | 877 | error = ath_pci_init(); |
878 | if (error < 0) { | 878 | if (error < 0) { |
879 | printk(KERN_ERR | 879 | pr_err("No PCI devices found, driver not installed\n"); |
880 | "ath9k: No PCI devices found, driver not installed.\n"); | ||
881 | error = -ENODEV; | 880 | error = -ENODEV; |
882 | goto err_rate_unregister; | 881 | goto err_rate_unregister; |
883 | } | 882 | } |
@@ -906,6 +905,6 @@ static void __exit ath9k_exit(void) | |||
906 | ath_ahb_exit(); | 905 | ath_ahb_exit(); |
907 | ath_pci_exit(); | 906 | ath_pci_exit(); |
908 | ath_rate_control_unregister(); | 907 | ath_rate_control_unregister(); |
909 | printk(KERN_INFO "%s: Driver unloaded\n", dev_info); | 908 | pr_info("%s: Driver unloaded\n", dev_info); |
910 | } | 909 | } |
911 | module_exit(ath9k_exit); | 910 | module_exit(ath9k_exit); |
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index 77dc327def8d..a856b51255f4 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/nl80211.h> | 19 | #include <linux/nl80211.h> |
18 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
19 | #include <linux/pci-aspm.h> | 21 | #include <linux/pci-aspm.h> |
@@ -171,14 +173,13 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
171 | 173 | ||
172 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); | 174 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
173 | if (ret) { | 175 | if (ret) { |
174 | printk(KERN_ERR "ath9k: 32-bit DMA not available\n"); | 176 | pr_err("32-bit DMA not available\n"); |
175 | goto err_dma; | 177 | goto err_dma; |
176 | } | 178 | } |
177 | 179 | ||
178 | ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); | 180 | ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
179 | if (ret) { | 181 | if (ret) { |
180 | printk(KERN_ERR "ath9k: 32-bit DMA consistent " | 182 | pr_err("32-bit DMA consistent DMA enable failed\n"); |
181 | "DMA enable failed\n"); | ||
182 | goto err_dma; | 183 | goto err_dma; |
183 | } | 184 | } |
184 | 185 | ||
@@ -224,7 +225,7 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
224 | 225 | ||
225 | mem = pci_iomap(pdev, 0, 0); | 226 | mem = pci_iomap(pdev, 0, 0); |
226 | if (!mem) { | 227 | if (!mem) { |
227 | printk(KERN_ERR "PCI memory map error\n") ; | 228 | pr_err("PCI memory map error\n") ; |
228 | ret = -EIO; | 229 | ret = -EIO; |
229 | goto err_iomap; | 230 | goto err_iomap; |
230 | } | 231 | } |
diff --git a/drivers/net/wireless/ath/main.c b/drivers/net/wireless/ath/main.c index ea2c737138d3..8e99540cd90e 100644 --- a/drivers/net/wireless/ath/main.c +++ b/drivers/net/wireless/ath/main.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
18 | #include <linux/module.h> | 20 | #include <linux/module.h> |
19 | 21 | ||
@@ -49,7 +51,7 @@ struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, | |||
49 | if (off != 0) | 51 | if (off != 0) |
50 | skb_reserve(skb, common->cachelsz - off); | 52 | skb_reserve(skb, common->cachelsz - off); |
51 | } else { | 53 | } else { |
52 | printk(KERN_ERR "skbuff alloc of size %u failed\n", len); | 54 | pr_err("skbuff alloc of size %u failed\n", len); |
53 | return NULL; | 55 | return NULL; |
54 | } | 56 | } |
55 | 57 | ||
diff --git a/drivers/net/wireless/ath/regd.c b/drivers/net/wireless/ath/regd.c index 10dea37431b3..d81698015bf7 100644 --- a/drivers/net/wireless/ath/regd.c +++ b/drivers/net/wireless/ath/regd.c | |||
@@ -14,6 +14,8 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
18 | |||
17 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
18 | #include <linux/export.h> | 20 | #include <linux/export.h> |
19 | #include <net/cfg80211.h> | 21 | #include <net/cfg80211.h> |
@@ -562,7 +564,7 @@ static int __ath_regd_init(struct ath_regulatory *reg) | |||
562 | printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd); | 564 | printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd); |
563 | 565 | ||
564 | if (!ath_regd_is_eeprom_valid(reg)) { | 566 | if (!ath_regd_is_eeprom_valid(reg)) { |
565 | printk(KERN_ERR "ath: Invalid EEPROM contents\n"); | 567 | pr_err("Invalid EEPROM contents\n"); |
566 | return -EINVAL; | 568 | return -EINVAL; |
567 | } | 569 | } |
568 | 570 | ||