diff options
author | Joe Perches <joe@perches.com> | 2012-01-04 22:40:40 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-24 14:06:06 -0500 |
commit | af08687b4e6d44dcdb04b519e718eb58ecb99050 (patch) | |
tree | b7f72ff8e447b049bfdc47ec5c234d3ac5936c74 /drivers/net/wireless/rtlwifi/rtl8192de/trx.c | |
parent | 884dd24499df823f5c167223c7ae93bd764e2e4f (diff) |
rtlwifi: Standardize RT_PRINT_DATA macro and uses
Use a single printk(KERN_DEBUG to emit the header line
to avoid any possible output interleaving.
Remove unnecessary parentheses from the calling uses.
Standardize header arg without trailing \n or colon.
Fix a few pairwiase/pairwise typos.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rtlwifi/rtl8192de/trx.c')
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192de/trx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192de/trx.c b/drivers/net/wireless/rtlwifi/rtl8192de/trx.c index 3637c0c33525..e84b8d5e4b1b 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192de/trx.c +++ b/drivers/net/wireless/rtlwifi/rtl8192de/trx.c | |||
@@ -776,7 +776,7 @@ void rtl92de_tx_fill_cmddesc(struct ieee80211_hw *hw, | |||
776 | } | 776 | } |
777 | 777 | ||
778 | RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_LOUD, | 778 | RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_LOUD, |
779 | "H2C Tx Cmd Content\n", pdesc, TX_DESC_SIZE); | 779 | "H2C Tx Cmd Content", pdesc, TX_DESC_SIZE); |
780 | wmb(); | 780 | wmb(); |
781 | SET_TX_DESC_OWN(pdesc, 1); | 781 | SET_TX_DESC_OWN(pdesc, 1); |
782 | } | 782 | } |