提交 292b1192 编写于 作者: J Joe Perches 提交者: John W. Linville

rtlwifi: Convert printks to pr_<level>

Use the current logging styles.
Add pr_fmt where appropriate.
Remove now unnecessary prefixes from printks.
Convert hard coded prefix to __func__.
Add a missing "\n" to a format.
Signed-off-by: NJoe Perches <joe@perches.com>
Acked-by: NLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 6054069a
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/ip.h> #include <linux/ip.h>
#include "wifi.h" #include "wifi.h"
#include "rc.h" #include "rc.h"
...@@ -397,8 +399,8 @@ void rtl_init_rfkill(struct ieee80211_hw *hw) ...@@ -397,8 +399,8 @@ void rtl_init_rfkill(struct ieee80211_hw *hw)
radio_state = rtlpriv->cfg->ops->radio_onoff_checking(hw, &valid); radio_state = rtlpriv->cfg->ops->radio_onoff_checking(hw, &valid);
if (valid) { if (valid) {
printk(KERN_INFO "rtlwifi: wireless switch is %s\n", pr_info("wireless switch is %s\n",
rtlpriv->rfkill.rfkill_state ? "on" : "off"); rtlpriv->rfkill.rfkill_state ? "on" : "off");
rtlpriv->rfkill.rfkill_state = radio_state; rtlpriv->rfkill.rfkill_state = radio_state;
...@@ -1401,8 +1403,7 @@ MODULE_DESCRIPTION("Realtek 802.11n PCI wireless core"); ...@@ -1401,8 +1403,7 @@ MODULE_DESCRIPTION("Realtek 802.11n PCI wireless core");
static int __init rtl_core_module_init(void) static int __init rtl_core_module_init(void)
{ {
if (rtl_rate_control_register()) if (rtl_rate_control_register())
printk(KERN_ERR "rtlwifi: Unable to register rtl_rc," pr_err("Unable to register rtl_rc, use default RC !!\n");
"use default RC !!\n");
return 0; return 0;
} }
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "wifi.h" #include "wifi.h"
#include "cam.h" #include "cam.h"
...@@ -347,7 +349,7 @@ void rtl_cam_del_entry(struct ieee80211_hw *hw, u8 *sta_addr) ...@@ -347,7 +349,7 @@ void rtl_cam_del_entry(struct ieee80211_hw *hw, u8 *sta_addr)
/* Remove from HW Security CAM */ /* Remove from HW Security CAM */
memset(rtlpriv->sec.hwsec_cam_sta_addr[i], 0, ETH_ALEN); memset(rtlpriv->sec.hwsec_cam_sta_addr[i], 0, ETH_ALEN);
rtlpriv->sec.hwsec_cam_bitmap &= ~(BIT(0) << i); rtlpriv->sec.hwsec_cam_bitmap &= ~(BIT(0) << i);
printk(KERN_INFO "&&&&&&&&&del entry %d\n", i); pr_info("&&&&&&&&&del entry %d\n", i);
} }
} }
return; return;
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/firmware.h> #include <linux/firmware.h>
#include "../wifi.h" #include "../wifi.h"
#include "../pci.h" #include "../pci.h"
...@@ -224,8 +226,7 @@ int rtl92c_download_fw(struct ieee80211_hw *hw) ...@@ -224,8 +226,7 @@ int rtl92c_download_fw(struct ieee80211_hw *hw)
u32 fwsize; u32 fwsize;
enum version_8192c version = rtlhal->version; enum version_8192c version = rtlhal->version;
printk(KERN_INFO "rtl8192c: Loading firmware file %s\n", pr_info("Loading firmware file %s\n", rtlpriv->cfg->fw_name);
rtlpriv->cfg->fw_name);
if (!rtlhal->pfirmware) if (!rtlhal->pfirmware)
return 1; return 1;
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../efuse.h" #include "../efuse.h"
#include "../base.h" #include "../base.h"
...@@ -337,7 +339,7 @@ static void _rtl92cu_read_board_type(struct ieee80211_hw *hw, u8 *contents) ...@@ -337,7 +339,7 @@ static void _rtl92cu_read_board_type(struct ieee80211_hw *hw, u8 *contents)
rtlefuse->board_type = boardType; rtlefuse->board_type = boardType;
if (IS_HIGHT_PA(rtlefuse->board_type)) if (IS_HIGHT_PA(rtlefuse->board_type))
rtlefuse->external_pa = 1; rtlefuse->external_pa = 1;
printk(KERN_INFO "rtl8192cu: Board Type %x\n", rtlefuse->board_type); pr_info("Board Type %x\n", rtlefuse->board_type);
#ifdef CONFIG_ANTENNA_DIVERSITY #ifdef CONFIG_ANTENNA_DIVERSITY
/* Antenna Diversity setting. */ /* Antenna Diversity setting. */
...@@ -346,8 +348,7 @@ static void _rtl92cu_read_board_type(struct ieee80211_hw *hw, u8 *contents) ...@@ -346,8 +348,7 @@ static void _rtl92cu_read_board_type(struct ieee80211_hw *hw, u8 *contents)
else else
rtl_efuse->antenna_cfg = registry_par->antdiv_cfg; /* 0:OFF, */ rtl_efuse->antenna_cfg = registry_par->antdiv_cfg; /* 0:OFF, */
printk(KERN_INFO "rtl8192cu: Antenna Config %x\n", pr_info("Antenna Config %x\n", rtl_efuse->antenna_cfg);
rtl_efuse->antenna_cfg);
#endif #endif
} }
...@@ -384,71 +385,57 @@ static void _update_bt_param(_adapter *padapter) ...@@ -384,71 +385,57 @@ static void _update_bt_param(_adapter *padapter)
pbtpriv->bBTNonTrafficModeSet = _FALSE; pbtpriv->bBTNonTrafficModeSet = _FALSE;
pbtpriv->CurrentState = 0; pbtpriv->CurrentState = 0;
pbtpriv->PreviousState = 0; pbtpriv->PreviousState = 0;
printk(KERN_INFO "rtl8192cu: BT Coexistance = %s\n", pr_info("BT Coexistance = %s\n",
(pbtpriv->BT_Coexist == _TRUE) ? "enable" : "disable"); (pbtpriv->BT_Coexist == _TRUE) ? "enable" : "disable");
if (pbtpriv->BT_Coexist) { if (pbtpriv->BT_Coexist) {
if (pbtpriv->BT_Ant_Num == Ant_x2) if (pbtpriv->BT_Ant_Num == Ant_x2)
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_Ant_Num = Antx2\n");
"Ant_Num = Antx2\n");
else if (pbtpriv->BT_Ant_Num == Ant_x1) else if (pbtpriv->BT_Ant_Num == Ant_x1)
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_Ant_Num = Antx1\n");
"Ant_Num = Antx1\n");
switch (pbtpriv->BT_CoexistType) { switch (pbtpriv->BT_CoexistType) {
case BT_2Wire: case BT_2Wire:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_2Wire\n");
"CoexistType = BT_2Wire\n");
break; break;
case BT_ISSC_3Wire: case BT_ISSC_3Wire:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_ISSC_3Wire\n");
"CoexistType = BT_ISSC_3Wire\n");
break; break;
case BT_Accel: case BT_Accel:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_Accel\n");
"CoexistType = BT_Accel\n");
break; break;
case BT_CSR_BC4: case BT_CSR_BC4:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_CSR_BC4\n");
"CoexistType = BT_CSR_BC4\n");
break; break;
case BT_CSR_BC8: case BT_CSR_BC8:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_CSR_BC8\n");
"CoexistType = BT_CSR_BC8\n");
break; break;
case BT_RTL8756: case BT_RTL8756:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = BT_RTL8756\n");
"CoexistType = BT_RTL8756\n");
break; break;
default: default:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_" pr_info("BlueTooth BT_CoexistType = Unknown\n");
"CoexistType = Unknown\n");
break; break;
} }
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Ant_isolation = %d\n", pr_info("BlueTooth BT_Ant_isolation = %d\n",
pbtpriv->BT_Ant_isolation); pbtpriv->BT_Ant_isolation);
switch (pbtpriv->BT_Service) { switch (pbtpriv->BT_Service) {
case BT_OtherAction: case BT_OtherAction:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Service = " pr_info("BlueTooth BT_Service = BT_OtherAction\n");
"BT_OtherAction\n");
break; break;
case BT_SCO: case BT_SCO:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Service = " pr_info("BlueTooth BT_Service = BT_SCO\n");
"BT_SCO\n");
break; break;
case BT_Busy: case BT_Busy:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Service = " pr_info("BlueTooth BT_Service = BT_Busy\n");
"BT_Busy\n");
break; break;
case BT_OtherBusy: case BT_OtherBusy:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Service = " pr_info("BlueTooth BT_Service = BT_OtherBusy\n");
"BT_OtherBusy\n");
break; break;
default: default:
printk(KERN_INFO "rtl8192cu: BlueTooth BT_Service = " pr_info("BlueTooth BT_Service = BT_Idle\n");
"BT_Idle\n");
break; break;
} }
printk(KERN_INFO "rtl8192cu: BT_RadioSharedType = 0x%x\n", pr_info("BT_RadioSharedType = 0x%x\n",
pbtpriv->BT_RadioSharedType); pbtpriv->BT_RadioSharedType);
} }
} }
...@@ -526,7 +513,7 @@ static void _rtl92cu_read_adapter_info(struct ieee80211_hw *hw) ...@@ -526,7 +513,7 @@ static void _rtl92cu_read_adapter_info(struct ieee80211_hw *hw)
usvalue = *(u16 *)&hwinfo[EEPROM_MAC_ADDR + i]; usvalue = *(u16 *)&hwinfo[EEPROM_MAC_ADDR + i];
*((u16 *) (&rtlefuse->dev_addr[i])) = usvalue; *((u16 *) (&rtlefuse->dev_addr[i])) = usvalue;
} }
printk(KERN_INFO "rtl8192cu: MAC address: %pM\n", rtlefuse->dev_addr); pr_info("MAC address: %pM\n", rtlefuse->dev_addr);
_rtl92cu_read_txpower_info_from_hwpg(hw, _rtl92cu_read_txpower_info_from_hwpg(hw,
rtlefuse->autoload_failflag, hwinfo); rtlefuse->autoload_failflag, hwinfo);
rtlefuse->eeprom_vid = *(u16 *)&hwinfo[EEPROM_VID]; rtlefuse->eeprom_vid = *(u16 *)&hwinfo[EEPROM_VID];
...@@ -665,7 +652,7 @@ static int _rtl92cu_init_power_on(struct ieee80211_hw *hw) ...@@ -665,7 +652,7 @@ static int _rtl92cu_init_power_on(struct ieee80211_hw *hw)
rtl_write_word(rtlpriv, REG_APS_FSMCO, value16); rtl_write_word(rtlpriv, REG_APS_FSMCO, value16);
do { do {
if (!(rtl_read_word(rtlpriv, REG_APS_FSMCO) & APFM_ONMAC)) { if (!(rtl_read_word(rtlpriv, REG_APS_FSMCO) & APFM_ONMAC)) {
printk(KERN_INFO "rtl8192cu: MAC auto ON okay!\n"); pr_info("MAC auto ON okay!\n");
break; break;
} }
if (pollingCount++ > 100) { if (pollingCount++ > 100) {
...@@ -819,7 +806,7 @@ static void _rtl92cu_init_chipN_one_out_ep_priority(struct ieee80211_hw *hw, ...@@ -819,7 +806,7 @@ static void _rtl92cu_init_chipN_one_out_ep_priority(struct ieee80211_hw *hw,
} }
_rtl92c_init_chipN_reg_priority(hw, value, value, value, value, _rtl92c_init_chipN_reg_priority(hw, value, value, value, value,
value, value); value, value);
printk(KERN_INFO "rtl8192cu: Tx queue select: 0x%02x\n", queue_sel); pr_info("Tx queue select: 0x%02x\n", queue_sel);
} }
static void _rtl92cu_init_chipN_two_out_ep_priority(struct ieee80211_hw *hw, static void _rtl92cu_init_chipN_two_out_ep_priority(struct ieee80211_hw *hw,
...@@ -863,7 +850,7 @@ static void _rtl92cu_init_chipN_two_out_ep_priority(struct ieee80211_hw *hw, ...@@ -863,7 +850,7 @@ static void _rtl92cu_init_chipN_two_out_ep_priority(struct ieee80211_hw *hw,
hiQ = valueHi; hiQ = valueHi;
} }
_rtl92c_init_chipN_reg_priority(hw, beQ, bkQ, viQ, voQ, mgtQ, hiQ); _rtl92c_init_chipN_reg_priority(hw, beQ, bkQ, viQ, voQ, mgtQ, hiQ);
printk(KERN_INFO "rtl8192cu: Tx queue select: 0x%02x\n", queue_sel); pr_info("Tx queue select: 0x%02x\n", queue_sel);
} }
static void _rtl92cu_init_chipN_three_out_ep_priority(struct ieee80211_hw *hw, static void _rtl92cu_init_chipN_three_out_ep_priority(struct ieee80211_hw *hw,
......
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
* Larry Finger <Larry.Finger@lwfinger.net> * Larry Finger <Larry.Finger@lwfinger.net>
* *
****************************************************************************/ ****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include "../wifi.h" #include "../wifi.h"
...@@ -213,14 +216,14 @@ bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary) ...@@ -213,14 +216,14 @@ bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary)
for (i = 0; i < (boundary - 1); i++) { for (i = 0; i < (boundary - 1); i++) {
rst = rtl92c_llt_write(hw, i , i + 1); rst = rtl92c_llt_write(hw, i , i + 1);
if (true != rst) { if (true != rst) {
printk(KERN_ERR "===> %s #1 fail\n", __func__); pr_err("===> %s #1 fail\n", __func__);
return rst; return rst;
} }
} }
/* end of list */ /* end of list */
rst = rtl92c_llt_write(hw, (boundary - 1), 0xFF); rst = rtl92c_llt_write(hw, (boundary - 1), 0xFF);
if (true != rst) { if (true != rst) {
printk(KERN_ERR "===> %s #2 fail\n", __func__); pr_err("===> %s #2 fail\n", __func__);
return rst; return rst;
} }
/* Make the other pages as ring buffer /* Make the other pages as ring buffer
...@@ -231,14 +234,14 @@ bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary) ...@@ -231,14 +234,14 @@ bool rtl92c_init_llt_table(struct ieee80211_hw *hw, u32 boundary)
for (i = boundary; i < LLT_LAST_ENTRY_OF_TX_PKT_BUFFER; i++) { for (i = boundary; i < LLT_LAST_ENTRY_OF_TX_PKT_BUFFER; i++) {
rst = rtl92c_llt_write(hw, i, (i + 1)); rst = rtl92c_llt_write(hw, i, (i + 1));
if (true != rst) { if (true != rst) {
printk(KERN_ERR "===> %s #3 fail\n", __func__); pr_err("===> %s #3 fail\n", __func__);
return rst; return rst;
} }
} }
/* Let last entry point to the start entry of ring buffer */ /* Let last entry point to the start entry of ring buffer */
rst = rtl92c_llt_write(hw, LLT_LAST_ENTRY_OF_TX_PKT_BUFFER, boundary); rst = rtl92c_llt_write(hw, LLT_LAST_ENTRY_OF_TX_PKT_BUFFER, boundary);
if (true != rst) { if (true != rst) {
printk(KERN_ERR "===> %s #4 fail\n", __func__); pr_err("===> %s #4 fail\n", __func__);
return rst; return rst;
} }
return rst; return rst;
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include "../wifi.h" #include "../wifi.h"
...@@ -170,10 +172,8 @@ static int rtl92d_init_sw_vars(struct ieee80211_hw *hw) ...@@ -170,10 +172,8 @@ static int rtl92d_init_sw_vars(struct ieee80211_hw *hw)
} }
if (!header_print) { if (!header_print) {
printk(KERN_INFO "rtl8192de: Driver for Realtek RTL8192DE" pr_info("Driver for Realtek RTL8192DE WLAN interface\n");
" WLAN interface"); pr_info("Loading firmware file %s\n", rtlpriv->cfg->fw_name);
printk(KERN_INFO "rtl8192de: Loading firmware file %s\n",
rtlpriv->cfg->fw_name);
header_print++; header_print++;
} }
/* request fw */ /* request fw */
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../efuse.h" #include "../efuse.h"
#include "../base.h" #include "../base.h"
...@@ -465,8 +467,7 @@ static u8 _rtl92ce_halset_sysclk(struct ieee80211_hw *hw, u8 data) ...@@ -465,8 +467,7 @@ static u8 _rtl92ce_halset_sysclk(struct ieee80211_hw *hw, u8 data)
if ((tmpvalue & BIT(6))) if ((tmpvalue & BIT(6)))
break; break;
printk(KERN_ERR "wait for BIT(6) return value %x\n", pr_err("wait for BIT(6) return value %x\n", tmpvalue);
tmpvalue);
if (waitcount == 0) if (waitcount == 0)
break; break;
...@@ -1255,8 +1256,7 @@ static u8 _rtl92s_set_sysclk(struct ieee80211_hw *hw, u8 data) ...@@ -1255,8 +1256,7 @@ static u8 _rtl92s_set_sysclk(struct ieee80211_hw *hw, u8 data)
if ((tmp & BIT(6))) if ((tmp & BIT(6)))
break; break;
printk(KERN_ERR "wait for BIT(6) return value %x\n", pr_err("wait for BIT(6) return value %x\n", tmp);
tmp);
if (waitcnt == 0) if (waitcnt == 0)
break; break;
...@@ -1315,7 +1315,7 @@ static void _rtl92s_phy_set_rfhalt(struct ieee80211_hw *hw) ...@@ -1315,7 +1315,7 @@ static void _rtl92s_phy_set_rfhalt(struct ieee80211_hw *hw)
if (u1btmp & BIT(7)) { if (u1btmp & BIT(7)) {
u1btmp &= ~(BIT(6) | BIT(7)); u1btmp &= ~(BIT(6) | BIT(7));
if (!_rtl92s_set_sysclk(hw, u1btmp)) { if (!_rtl92s_set_sysclk(hw, u1btmp)) {
printk(KERN_ERR "Switch ctrl path fail\n"); pr_err("Switch ctrl path fail\n");
return; return;
} }
} }
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "../pci.h" #include "../pci.h"
#include "../ps.h" #include "../ps.h"
...@@ -1016,8 +1018,7 @@ static bool _rtl92s_phy_bb_config_parafile(struct ieee80211_hw *hw) ...@@ -1016,8 +1018,7 @@ static bool _rtl92s_phy_bb_config_parafile(struct ieee80211_hw *hw)
rtstatus = _rtl92s_phy_config_bb(hw, BASEBAND_CONFIG_AGC_TAB); rtstatus = _rtl92s_phy_config_bb(hw, BASEBAND_CONFIG_AGC_TAB);
if (rtstatus != true) { if (rtstatus != true) {
printk(KERN_ERR "_rtl92s_phy_bb_config_parafile(): " pr_err("%s(): AGC Table Fail\n", __func__);
"AGC Table Fail\n");
goto phy_BB8190_Config_ParaFile_Fail; goto phy_BB8190_Config_ParaFile_Fail;
} }
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include "../wifi.h" #include "../wifi.h"
#include "reg.h" #include "reg.h"
#include "def.h" #include "def.h"
...@@ -507,7 +509,7 @@ bool rtl92s_phy_rf6052_config(struct ieee80211_hw *hw) ...@@ -507,7 +509,7 @@ bool rtl92s_phy_rf6052_config(struct ieee80211_hw *hw)
} }
if (rtstatus != true) { if (rtstatus != true) {
printk(KERN_ERR "Radio[%d] Fail!!", rfpath); pr_err("Radio[%d] Fail!!\n", rfpath);
goto fail; goto fail;
} }
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include "../wifi.h" #include "../wifi.h"
...@@ -183,8 +185,8 @@ static int rtl92s_init_sw_vars(struct ieee80211_hw *hw) ...@@ -183,8 +185,8 @@ static int rtl92s_init_sw_vars(struct ieee80211_hw *hw)
return 1; return 1;
} }
printk(KERN_INFO "rtl8192se: Driver for Realtek RTL8192SE/RTL8191SE\n" pr_info("Driver for Realtek RTL8192SE/RTL8191SE\n"
" Loading firmware %s\n", rtlpriv->cfg->fw_name); "Loading firmware %s\n", rtlpriv->cfg->fw_name);
/* request fw */ /* request fw */
err = request_firmware(&firmware, rtlpriv->cfg->fw_name, err = request_firmware(&firmware, rtlpriv->cfg->fw_name,
rtlpriv->io.dev); rtlpriv->io.dev);
......
...@@ -24,6 +24,9 @@ ...@@ -24,6 +24,9 @@
* Hsinchu 300, Taiwan. * Hsinchu 300, Taiwan.
* *
*****************************************************************************/ *****************************************************************************/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/usb.h> #include <linux/usb.h>
#include "core.h" #include "core.h"
#include "wifi.h" #include "wifi.h"
...@@ -104,9 +107,8 @@ static int _usbctrl_vendorreq_sync_read(struct usb_device *udev, u8 request, ...@@ -104,9 +107,8 @@ static int _usbctrl_vendorreq_sync_read(struct usb_device *udev, u8 request,
pdata, len, 0); /* max. timeout */ pdata, len, 0); /* max. timeout */
if (status < 0) if (status < 0)
printk(KERN_ERR "reg 0x%x, usbctrl_vendorreq TimeOut! " pr_err("reg 0x%x, usbctrl_vendorreq TimeOut! status:0x%x value=0x%x\n",
"status:0x%x value=0x%x\n", value, status, value, status, *(u32 *)pdata);
*(u32 *)pdata);
return status; return status;
} }
...@@ -316,7 +318,7 @@ static int _rtl_usb_init_rx(struct ieee80211_hw *hw) ...@@ -316,7 +318,7 @@ static int _rtl_usb_init_rx(struct ieee80211_hw *hw)
rtlusb->usb_rx_segregate_hdl = rtlusb->usb_rx_segregate_hdl =
rtlpriv->cfg->usb_interface_cfg->usb_rx_segregate_hdl; rtlpriv->cfg->usb_interface_cfg->usb_rx_segregate_hdl;
printk(KERN_INFO "rtl8192cu: rx_max_size %d, rx_urb_num %d, in_ep %d\n", pr_info("rx_max_size %d, rx_urb_num %d, in_ep %d\n",
rtlusb->rx_max_size, rtlusb->rx_urb_num, rtlusb->in_ep); rtlusb->rx_max_size, rtlusb->rx_urb_num, rtlusb->in_ep);
init_usb_anchor(&rtlusb->rx_submitted); init_usb_anchor(&rtlusb->rx_submitted);
return 0; return 0;
...@@ -580,7 +582,7 @@ static void _rtl_rx_completed(struct urb *_urb) ...@@ -580,7 +582,7 @@ static void _rtl_rx_completed(struct urb *_urb)
} else{ } else{
/* TO DO */ /* TO DO */
_rtl_rx_pre_process(hw, skb); _rtl_rx_pre_process(hw, skb);
printk(KERN_ERR "rtlwifi: rx agg not supported\n"); pr_err("rx agg not supported\n");
} }
goto resubmit; goto resubmit;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册