diff options
author | Stanislaw Gruszka <stf_xl@wp.pl> | 2013-01-22 11:49:14 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-01-30 15:06:39 -0500 |
commit | def64521572d8330bfa6d855e278507100fdf180 (patch) | |
tree | 2ee9988477ca0b14f487a382f820c08b94b58056 /drivers/net/wireless/rt2x00 | |
parent | 29d7b331c73c4f1a8b3f7f4a94abe4eb834be351 (diff) |
rt2x00: print chip and firmware version by default
Signed-off-by: Stanislaw Gruszka <stf_xl@wp.pl>
Tested-by: Xose Vazquez Perez <xose.vazquez@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00mac.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index b52512b8ac5f..221728090cbd 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -92,7 +92,7 @@ | |||
92 | #define NOTICE(__dev, __msg, __args...) \ | 92 | #define NOTICE(__dev, __msg, __args...) \ |
93 | DEBUG_PRINTK(__dev, KERN_NOTICE, "Notice", __msg, ##__args) | 93 | DEBUG_PRINTK(__dev, KERN_NOTICE, "Notice", __msg, ##__args) |
94 | #define INFO(__dev, __msg, __args...) \ | 94 | #define INFO(__dev, __msg, __args...) \ |
95 | DEBUG_PRINTK(__dev, KERN_INFO, "Info", __msg, ##__args) | 95 | DEBUG_PRINTK_MSG(__dev, KERN_INFO, "Info", __msg, ##__args) |
96 | #define DEBUG(__dev, __msg, __args...) \ | 96 | #define DEBUG(__dev, __msg, __args...) \ |
97 | DEBUG_PRINTK(__dev, KERN_DEBUG, "Debug", __msg, ##__args) | 97 | DEBUG_PRINTK(__dev, KERN_DEBUG, "Debug", __msg, ##__args) |
98 | #define EEPROM(__dev, __msg, __args...) \ | 98 | #define EEPROM(__dev, __msg, __args...) \ |
diff --git a/drivers/net/wireless/rt2x00/rt2x00mac.c b/drivers/net/wireless/rt2x00/rt2x00mac.c index ed7a1bb3f245..20c6eccce5aa 100644 --- a/drivers/net/wireless/rt2x00/rt2x00mac.c +++ b/drivers/net/wireless/rt2x00/rt2x00mac.c | |||
@@ -731,9 +731,9 @@ int rt2x00mac_conf_tx(struct ieee80211_hw *hw, | |||
731 | queue->aifs = params->aifs; | 731 | queue->aifs = params->aifs; |
732 | queue->txop = params->txop; | 732 | queue->txop = params->txop; |
733 | 733 | ||
734 | INFO(rt2x00dev, | 734 | DEBUG(rt2x00dev, |
735 | "Configured TX queue %d - CWmin: %d, CWmax: %d, Aifs: %d, TXop: %d.\n", | 735 | "Configured TX queue %d - CWmin: %d, CWmax: %d, Aifs: %d, TXop: %d.\n", |
736 | queue_idx, queue->cw_min, queue->cw_max, queue->aifs, queue->txop); | 736 | queue_idx, queue->cw_min, queue->cw_max, queue->aifs, queue->txop); |
737 | 737 | ||
738 | return 0; | 738 | return 0; |
739 | } | 739 | } |