From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Larry Finger <Larry.Finger@lwfinger.net>,
Kalle Valo <kvalo@codeaurora.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 013/328] rtlwifi: rtl8192se Rename RT_TRACE to rtl_dbg
Date: Tue, 11 Mar 2025 15:56:23 +0100 [thread overview]
Message-ID: <20250311145715.405258959@linuxfoundation.org> (raw)
In-Reply-To: <20250311145714.865727435@linuxfoundation.org>
5.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Larry Finger <Larry.Finger@lwfinger.net>
[ Upstream commit fca8218d33f3f425aed1ca5d3e796ceb9cdfd0ee ]
Change the misleading macro name to one that is more descriptive for
rtl8192se. Changes suggested by ckeckpatch.pl have been made.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200723204244.24457-11-Larry.Finger@lwfinger.net
Stable-dep-of: 8559a9e0c457 ("wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
.../wireless/realtek/rtlwifi/rtl8192se/dm.c | 42 ++--
.../wireless/realtek/rtlwifi/rtl8192se/fw.c | 40 ++--
.../wireless/realtek/rtlwifi/rtl8192se/hw.c | 157 +++++++------
.../wireless/realtek/rtlwifi/rtl8192se/led.c | 10 +-
.../wireless/realtek/rtlwifi/rtl8192se/phy.c | 211 +++++++++---------
.../wireless/realtek/rtlwifi/rtl8192se/rf.c | 70 +++---
.../wireless/realtek/rtlwifi/rtl8192se/sw.c | 4 +-
.../wireless/realtek/rtlwifi/rtl8192se/trx.c | 10 +-
8 files changed, 271 insertions(+), 273 deletions(-)
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.c
index a6e4384ceea1d..5fce3db52cd9a 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.c
@@ -144,10 +144,10 @@ static void _rtl92s_dm_txpowertracking_callback_thermalmeter(
thermalvalue = (u8)rtl_get_rfreg(hw, RF90_PATH_A, RF_T_METER, 0x1f);
- RT_TRACE(rtlpriv, COMP_POWER_TRACKING, DBG_LOUD,
- "Readback Thermal Meter = 0x%x pre thermal meter 0x%x eeprom_thermal meter 0x%x\n",
- thermalvalue,
- rtlpriv->dm.thermalvalue, rtlefuse->eeprom_thermalmeter);
+ rtl_dbg(rtlpriv, COMP_POWER_TRACKING, DBG_LOUD,
+ "Readback Thermal Meter = 0x%x pre thermal meter 0x%x eeprom_thermal meter 0x%x\n",
+ thermalvalue,
+ rtlpriv->dm.thermalvalue, rtlefuse->eeprom_thermalmeter);
if (thermalvalue) {
rtlpriv->dm.thermalvalue = thermalvalue;
@@ -158,8 +158,8 @@ static void _rtl92s_dm_txpowertracking_callback_thermalmeter(
(rtlpriv->efuse.thermalmeter[0] << 8) |
(thermalvalue << 16));
- RT_TRACE(rtlpriv, COMP_POWER_TRACKING, DBG_LOUD,
- "Write to FW Thermal Val = 0x%x\n", fw_cmd);
+ rtl_dbg(rtlpriv, COMP_POWER_TRACKING, DBG_LOUD,
+ "Write to FW Thermal Val = 0x%x\n", fw_cmd);
rtl_write_dword(rtlpriv, WFM5, fw_cmd);
rtl92s_phy_chk_fwcmd_iodone(hw);
@@ -264,10 +264,10 @@ static void _rtl92s_dm_refresh_rateadaptive_mask(struct ieee80211_hw *hw)
}
if (ra->pre_ratr_state != ra->ratr_state) {
- RT_TRACE(rtlpriv, COMP_RATE, DBG_LOUD,
- "RSSI = %ld RSSI_LEVEL = %d PreState = %d, CurState = %d\n",
- rtlpriv->dm.undec_sm_pwdb, ra->ratr_state,
- ra->pre_ratr_state, ra->ratr_state);
+ rtl_dbg(rtlpriv, COMP_RATE, DBG_LOUD,
+ "RSSI = %ld RSSI_LEVEL = %d PreState = %d, CurState = %d\n",
+ rtlpriv->dm.undec_sm_pwdb, ra->ratr_state,
+ ra->pre_ratr_state, ra->ratr_state);
rcu_read_lock();
sta = rtl_find_sta(hw, mac->bssid);
@@ -576,8 +576,8 @@ static void _rtl92s_dm_dynamic_txpower(struct ieee80211_hw *hw)
if ((mac->link_state < MAC80211_LINKED) &&
(rtlpriv->dm.entry_min_undec_sm_pwdb == 0)) {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_TRACE,
- "Not connected to any\n");
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_TRACE,
+ "Not connected to any\n");
rtlpriv->dm.dynamic_txhighpower_lvl = TX_HIGHPWR_LEVEL_NORMAL;
@@ -588,21 +588,21 @@ static void _rtl92s_dm_dynamic_txpower(struct ieee80211_hw *hw)
if (mac->link_state >= MAC80211_LINKED) {
if (mac->opmode == NL80211_IFTYPE_ADHOC) {
undec_sm_pwdb = rtlpriv->dm.entry_min_undec_sm_pwdb;
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "AP Client PWDB = 0x%lx\n",
- undec_sm_pwdb);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "AP Client PWDB = 0x%lx\n",
+ undec_sm_pwdb);
} else {
undec_sm_pwdb = rtlpriv->dm.undec_sm_pwdb;
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "STA Default Port PWDB = 0x%lx\n",
- undec_sm_pwdb);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "STA Default Port PWDB = 0x%lx\n",
+ undec_sm_pwdb);
}
} else {
undec_sm_pwdb = rtlpriv->dm.entry_min_undec_sm_pwdb;
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "AP Ext Port PWDB = 0x%lx\n",
- undec_sm_pwdb);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "AP Ext Port PWDB = 0x%lx\n",
+ undec_sm_pwdb);
}
txpwr_threshold_lv2 = TX_POWER_NEAR_FIELD_THRESH_LVL2;
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.c
index 541b7881735e8..61bc3a384fdac 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.c
@@ -39,8 +39,8 @@ static bool _rtl92s_firmware_enable_cpu(struct ieee80211_hw *hw)
do {
cpustatus = rtl_read_byte(rtlpriv, TCR);
if (cpustatus & IMEM_RDY) {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "IMEM Ready after CPU has refilled\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "IMEM Ready after CPU has refilled\n");
break;
}
@@ -195,8 +195,8 @@ static bool _rtl92s_firmware_checkready(struct ieee80211_hw *hw,
short pollingcnt = 1000;
bool rtstatus = true;
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "LoadStaus(%d)\n", loadfw_status);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "LoadStaus(%d)\n", loadfw_status);
firmware->fwstatus = (enum fw_status)loadfw_status;
@@ -256,9 +256,9 @@ static bool _rtl92s_firmware_checkready(struct ieee80211_hw *hw,
goto status_check_fail;
}
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "DMEM code download success, cpustatus(%#x)\n",
- cpustatus);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "DMEM code download success, cpustatus(%#x)\n",
+ cpustatus);
/* Prevent Delay too much and being scheduled out */
/* Polling Load Firmware ready */
@@ -270,9 +270,9 @@ static bool _rtl92s_firmware_checkready(struct ieee80211_hw *hw,
udelay(40);
} while (pollingcnt--);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "Polling Load Firmware ready, cpustatus(%x)\n",
- cpustatus);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "Polling Load Firmware ready, cpustatus(%x)\n",
+ cpustatus);
if (((cpustatus & LOAD_FW_READY) != LOAD_FW_READY) ||
(pollingcnt <= 0)) {
@@ -290,8 +290,8 @@ static bool _rtl92s_firmware_checkready(struct ieee80211_hw *hw,
rtl_write_dword(rtlpriv, RCR, (tmpu4b | RCR_APPFCS |
RCR_APP_ICV | RCR_APP_MIC));
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "Current RCR settings(%#x)\n", tmpu4b);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "Current RCR settings(%#x)\n", tmpu4b);
/* Set to normal mode. */
rtl_write_byte(rtlpriv, LBKMD_SEL, LBK_NORMAL);
@@ -304,9 +304,9 @@ static bool _rtl92s_firmware_checkready(struct ieee80211_hw *hw,
}
status_check_fail:
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "loadfw_status(%d), rtstatus(%x)\n",
- loadfw_status, rtstatus);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "loadfw_status(%d), rtstatus(%x)\n",
+ loadfw_status, rtstatus);
return rtstatus;
}
@@ -337,11 +337,11 @@ int rtl92s_download_fw(struct ieee80211_hw *hw)
firmware->firmwareversion = byte(pfwheader->version, 0);
firmware->pfwheader->fwpriv.hci_sel = 1;/* pcie */
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "signature:%x, version:%x, size:%x, imemsize:%x, sram size:%x\n",
- pfwheader->signature,
- pfwheader->version, pfwheader->dmem_size,
- pfwheader->img_imem_size, pfwheader->img_sram_size);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "signature:%x, version:%x, size:%x, imemsize:%x, sram size:%x\n",
+ pfwheader->signature,
+ pfwheader->version, pfwheader->dmem_size,
+ pfwheader->img_imem_size, pfwheader->img_sram_size);
/* 2. Retrieve IMEM image. */
if ((pfwheader->img_imem_size == 0) || (pfwheader->img_imem_size >
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.c
index 6d6e8994460d9..b04f5595414a1 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.c
@@ -111,8 +111,8 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
case HW_VAR_SLOT_TIME:{
u8 e_aci;
- RT_TRACE(rtlpriv, COMP_MLME, DBG_LOUD,
- "HW_VAR_SLOT_TIME %x\n", val[0]);
+ rtl_dbg(rtlpriv, COMP_MLME, DBG_LOUD,
+ "HW_VAR_SLOT_TIME %x\n", val[0]);
rtl_write_byte(rtlpriv, SLOT_TIME, val[0]);
@@ -156,9 +156,9 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
*val = min_spacing_to_set;
- RT_TRACE(rtlpriv, COMP_MLME, DBG_LOUD,
- "Set HW_VAR_AMPDU_MIN_SPACE: %#x\n",
- mac->min_space_cfg);
+ rtl_dbg(rtlpriv, COMP_MLME, DBG_LOUD,
+ "Set HW_VAR_AMPDU_MIN_SPACE: %#x\n",
+ mac->min_space_cfg);
rtl_write_byte(rtlpriv, AMPDU_MIN_SPACE,
mac->min_space_cfg);
@@ -172,9 +172,9 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
mac->min_space_cfg = rtlpriv->rtlhal.minspace_cfg;
mac->min_space_cfg |= (density_to_set << 3);
- RT_TRACE(rtlpriv, COMP_MLME, DBG_LOUD,
- "Set HW_VAR_SHORTGI_DENSITY: %#x\n",
- mac->min_space_cfg);
+ rtl_dbg(rtlpriv, COMP_MLME, DBG_LOUD,
+ "Set HW_VAR_SHORTGI_DENSITY: %#x\n",
+ mac->min_space_cfg);
rtl_write_byte(rtlpriv, AMPDU_MIN_SPACE,
mac->min_space_cfg);
@@ -215,9 +215,9 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
(factorlevel[17] << 4));
rtl_write_byte(rtlpriv, AGGLEN_LMT_H, regtoset);
- RT_TRACE(rtlpriv, COMP_MLME, DBG_LOUD,
- "Set HW_VAR_AMPDU_FACTOR: %#x\n",
- factor_toset);
+ rtl_dbg(rtlpriv, COMP_MLME, DBG_LOUD,
+ "Set HW_VAR_AMPDU_FACTOR: %#x\n",
+ factor_toset);
}
break;
}
@@ -253,9 +253,9 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
acm_ctrl |= ACMHW_VOQEN;
break;
default:
- RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
- "HW_VAR_ACM_CTRL acm set failed: eACI is %d\n",
- acm);
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
+ "HW_VAR_ACM_CTRL acm set failed: eACI is %d\n",
+ acm);
break;
}
} else {
@@ -276,8 +276,8 @@ void rtl92se_set_hw_reg(struct ieee80211_hw *hw, u8 variable, u8 *val)
}
}
- RT_TRACE(rtlpriv, COMP_QOS, DBG_TRACE,
- "HW_VAR_ACM_CTRL Write 0x%X\n", acm_ctrl);
+ rtl_dbg(rtlpriv, COMP_QOS, DBG_TRACE,
+ "HW_VAR_ACM_CTRL Write 0x%X\n", acm_ctrl);
rtl_write_byte(rtlpriv, ACMHWCTRL, acm_ctrl);
break;
}
@@ -417,14 +417,14 @@ void rtl92se_enable_hw_security_config(struct ieee80211_hw *hw)
struct rtl_priv *rtlpriv = rtl_priv(hw);
u8 sec_reg_value = 0x0;
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "PairwiseEncAlgorithm = %d GroupEncAlgorithm = %d\n",
- rtlpriv->sec.pairwise_enc_algorithm,
- rtlpriv->sec.group_enc_algorithm);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "PairwiseEncAlgorithm = %d GroupEncAlgorithm = %d\n",
+ rtlpriv->sec.pairwise_enc_algorithm,
+ rtlpriv->sec.group_enc_algorithm);
if (rtlpriv->cfg->mod_params->sw_crypto || rtlpriv->sec.use_sw_sec) {
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
- "not open hw encryption\n");
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG,
+ "not open hw encryption\n");
return;
}
@@ -435,8 +435,8 @@ void rtl92se_enable_hw_security_config(struct ieee80211_hw *hw)
sec_reg_value |= SCR_RXUSEDK;
}
- RT_TRACE(rtlpriv, COMP_SEC, DBG_LOUD, "The SECR-value %x\n",
- sec_reg_value);
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_LOUD, "The SECR-value %x\n",
+ sec_reg_value);
rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_WPA_CONFIG, &sec_reg_value);
@@ -870,10 +870,10 @@ static void _rtl92se_macconfig_after_fwdownload(struct ieee80211_hw *hw)
/* Change Program timing */
rtl_write_byte(rtlpriv, REG_EFUSE_CTRL + 3, 0x72);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "EFUSE CONFIG OK\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "EFUSE CONFIG OK\n");
}
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "OK\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "OK\n");
}
@@ -960,9 +960,8 @@ int rtl92se_hw_init(struct ieee80211_hw *hw)
/* 2. download firmware */
rtstatus = rtl92s_download_fw(hw);
if (!rtstatus) {
- RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
- "Failed to download FW. Init HW without FW now... "
- "Please copy FW into /lib/firmware/rtlwifi\n");
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
+ "Failed to download FW. Init HW without FW now... Please copy FW into /lib/firmware/rtlwifi\n");
err = 1;
goto exit;
}
@@ -1014,7 +1013,7 @@ int rtl92se_hw_init(struct ieee80211_hw *hw)
rtl_write_byte(rtlpriv, RF_CTRL, 0x07);
if (!rtl92s_phy_rf_config(hw)) {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "RF Config failed\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "RF Config failed\n");
err = rtstatus;
goto exit;
}
@@ -1147,23 +1146,23 @@ static int _rtl92se_set_media_status(struct ieee80211_hw *hw,
switch (type) {
case NL80211_IFTYPE_UNSPECIFIED:
bt_msr |= (MSR_LINK_NONE << MSR_LINK_SHIFT);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE,
- "Set Network type to NO LINK!\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE,
+ "Set Network type to NO LINK!\n");
break;
case NL80211_IFTYPE_ADHOC:
bt_msr |= (MSR_LINK_ADHOC << MSR_LINK_SHIFT);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE,
- "Set Network type to Ad Hoc!\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE,
+ "Set Network type to Ad Hoc!\n");
break;
case NL80211_IFTYPE_STATION:
bt_msr |= (MSR_LINK_MANAGED << MSR_LINK_SHIFT);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE,
- "Set Network type to STA!\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE,
+ "Set Network type to STA!\n");
break;
case NL80211_IFTYPE_AP:
bt_msr |= (MSR_LINK_MASTER << MSR_LINK_SHIFT);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_TRACE,
- "Set Network type to AP!\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE,
+ "Set Network type to AP!\n");
break;
default:
pr_err("Network type %d not supported!\n", type);
@@ -1606,8 +1605,8 @@ void rtl92se_update_interrupt_mask(struct ieee80211_hw *hw,
struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
- RT_TRACE(rtlpriv, COMP_INTR, DBG_LOUD, "add_msr:%x, rm_msr:%x\n",
- add_msr, rm_msr);
+ rtl_dbg(rtlpriv, COMP_INTR, DBG_LOUD, "add_msr:%x, rm_msr:%x\n",
+ add_msr, rm_msr);
if (add_msr)
rtlpci->irq_mask[0] |= add_msr;
@@ -1671,11 +1670,11 @@ static void _rtl92se_read_adapter_info(struct ieee80211_hw *hw)
eeprom_id = *((u16 *)&hwinfo[0]);
if (eeprom_id != RTL8190_EEPROM_ID) {
- RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
- "EEPROM ID(%#x) is invalid!!\n", eeprom_id);
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
+ "EEPROM ID(%#x) is invalid!!\n", eeprom_id);
rtlefuse->autoload_failflag = true;
} else {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n");
rtlefuse->autoload_failflag = false;
}
@@ -1692,16 +1691,16 @@ static void _rtl92se_read_adapter_info(struct ieee80211_hw *hw)
rtlefuse->eeprom_smid = *(u16 *)&hwinfo[EEPROM_SMID];
rtlefuse->eeprom_version = *(u16 *)&hwinfo[EEPROM_VERSION];
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "EEPROMId = 0x%4x\n", eeprom_id);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "EEPROM VID = 0x%4x\n", rtlefuse->eeprom_vid);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "EEPROM DID = 0x%4x\n", rtlefuse->eeprom_did);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "EEPROM SVID = 0x%4x\n", rtlefuse->eeprom_svid);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "EEPROM SMID = 0x%4x\n", rtlefuse->eeprom_smid);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "EEPROMId = 0x%4x\n", eeprom_id);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "EEPROM VID = 0x%4x\n", rtlefuse->eeprom_vid);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "EEPROM DID = 0x%4x\n", rtlefuse->eeprom_did);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "EEPROM SVID = 0x%4x\n", rtlefuse->eeprom_svid);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "EEPROM SMID = 0x%4x\n", rtlefuse->eeprom_smid);
for (i = 0; i < 6; i += 2) {
usvalue = *(u16 *)&hwinfo[EEPROM_MAC_ADDR + i];
@@ -1711,7 +1710,7 @@ static void _rtl92se_read_adapter_info(struct ieee80211_hw *hw)
for (i = 0; i < 6; i++)
rtl_write_byte(rtlpriv, MACIDR0 + i, rtlefuse->dev_addr[i]);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "%pM\n", rtlefuse->dev_addr);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "%pM\n", rtlefuse->dev_addr);
/* Get Tx Power Level by Channel */
/* Read Tx power of Channel 1 ~ 14 from EEPROM. */
@@ -1964,15 +1963,15 @@ static void _rtl92se_read_adapter_info(struct ieee80211_hw *hw)
tempval = rtl_read_byte(rtlpriv, 0x07);
if (!(tempval & BIT(0))) {
rtlefuse->b1x1_recvcombine = true;
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "RF_TYPE=1T2R but only 1SS\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "RF_TYPE=1T2R but only 1SS\n");
}
}
rtlefuse->b1ss_support = rtlefuse->b1x1_recvcombine;
rtlefuse->eeprom_oemid = *&hwinfo[EEPROM_CUSTOMID];
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "EEPROM Customer ID: 0x%2x\n",
- rtlefuse->eeprom_oemid);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "EEPROM Customer ID: 0x%2x\n",
+ rtlefuse->eeprom_oemid);
/* set channel paln to world wide 13 */
rtlefuse->channel_plan = COUNTRY_CODE_WORLD_WIDE_13;
@@ -1987,15 +1986,15 @@ void rtl92se_read_eeprom_info(struct ieee80211_hw *hw)
tmp_u1b = rtl_read_byte(rtlpriv, EPROM_CMD);
if (tmp_u1b & BIT(4)) {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "Boot from EEPROM\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "Boot from EEPROM\n");
rtlefuse->epromtype = EEPROM_93C46;
} else {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "Boot from EFUSE\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, "Boot from EFUSE\n");
rtlefuse->epromtype = EEPROM_BOOT_EFUSE;
}
if (tmp_u1b & BIT(5)) {
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n");
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "Autoload OK\n");
rtlefuse->autoload_failflag = false;
_rtl92se_read_adapter_info(hw);
} else {
@@ -2101,8 +2100,8 @@ static void rtl92se_update_hal_rate_table(struct ieee80211_hw *hw,
else
rtl92s_phy_set_fw_cmd(hw, FW_CMD_RA_REFRESH_BG);
- RT_TRACE(rtlpriv, COMP_RATR, DBG_DMESG, "%x\n",
- rtl_read_dword(rtlpriv, ARFR0));
+ rtl_dbg(rtlpriv, COMP_RATR, DBG_DMESG, "%x\n",
+ rtl_read_dword(rtlpriv, ARFR0));
}
static void rtl92se_update_hal_rate_mask(struct ieee80211_hw *hw,
@@ -2256,8 +2255,8 @@ static void rtl92se_update_hal_rate_mask(struct ieee80211_hw *hw,
mask |= (bmulticast ? 1 : 0) << 9 | (macid & 0x1f) << 4 | (band & 0xf);
- RT_TRACE(rtlpriv, COMP_RATR, DBG_TRACE, "mask = %x, bitmap = %x\n",
- mask, ratr_bitmap);
+ rtl_dbg(rtlpriv, COMP_RATR, DBG_TRACE, "mask = %x, bitmap = %x\n",
+ mask, ratr_bitmap);
rtl_write_dword(rtlpriv, 0x2c4, ratr_bitmap);
rtl_write_dword(rtlpriv, WFM5, (FW_RA_UPDATE_MASK | (mask << 8)));
@@ -2332,15 +2331,15 @@ bool rtl92se_gpio_radio_on_off_checking(struct ieee80211_hw *hw, u8 *valid)
rfpwr_toset = _rtl92se_rf_onoff_detect(hw);
if ((ppsc->hwradiooff) && (rfpwr_toset == ERFON)) {
- RT_TRACE(rtlpriv, COMP_RF, DBG_DMESG,
- "RFKILL-HW Radio ON, RF ON\n");
+ rtl_dbg(rtlpriv, COMP_RF, DBG_DMESG,
+ "RFKILL-HW Radio ON, RF ON\n");
rfpwr_toset = ERFON;
ppsc->hwradiooff = false;
actuallyset = true;
} else if ((!ppsc->hwradiooff) && (rfpwr_toset == ERFOFF)) {
- RT_TRACE(rtlpriv, COMP_RF,
- DBG_DMESG, "RFKILL-HW Radio OFF, RF OFF\n");
+ rtl_dbg(rtlpriv, COMP_RF,
+ DBG_DMESG, "RFKILL-HW Radio OFF, RF OFF\n");
rfpwr_toset = ERFOFF;
ppsc->hwradiooff = true;
@@ -2404,7 +2403,7 @@ void rtl92se_set_key(struct ieee80211_hw *hw, u32 key_index, u8 *p_macaddr,
u8 cam_offset = 0;
u8 clear_number = 5;
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG, "clear_all\n");
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG, "clear_all\n");
for (idx = 0; idx < clear_number; idx++) {
rtl_cam_mark_invalid(hw, cam_offset + idx);
@@ -2463,26 +2462,26 @@ void rtl92se_set_key(struct ieee80211_hw *hw, u32 key_index, u8 *p_macaddr,
}
if (rtlpriv->sec.key_len[key_index] == 0) {
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
- "delete one entry, entry_id is %d\n",
- entry_id);
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG,
+ "delete one entry, entry_id is %d\n",
+ entry_id);
if (mac->opmode == NL80211_IFTYPE_AP)
rtl_cam_del_entry(hw, p_macaddr);
rtl_cam_delete_one_entry(hw, p_macaddr, entry_id);
} else {
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
- "add one entry\n");
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG,
+ "add one entry\n");
if (is_pairwise) {
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
- "set Pairwise key\n");
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG,
+ "set Pairwise key\n");
rtl_cam_add_one_entry(hw, macaddr, key_index,
entry_id, enc_algo,
CAM_CONFIG_NO_USEDK,
rtlpriv->sec.key_buf[key_index]);
} else {
- RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
- "set group key\n");
+ rtl_dbg(rtlpriv, COMP_SEC, DBG_DMESG,
+ "set group key\n");
if (mac->opmode == NL80211_IFTYPE_ADHOC) {
rtl_cam_add_one_entry(hw,
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.c
index 2d18bc1ee4803..ecbf425f679f8 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.c
@@ -27,8 +27,8 @@ void rtl92se_sw_led_on(struct ieee80211_hw *hw, struct rtl_led *pled)
u8 ledcfg;
struct rtl_priv *rtlpriv = rtl_priv(hw);
- RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
- LEDCFG, pled->ledpin);
+ rtl_dbg(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
+ LEDCFG, pled->ledpin);
ledcfg = rtl_read_byte(rtlpriv, LEDCFG);
@@ -57,8 +57,8 @@ void rtl92se_sw_led_off(struct ieee80211_hw *hw, struct rtl_led *pled)
rtlpriv = rtl_priv(hw);
if (!rtlpriv || rtlpriv->max_fw_size)
return;
- RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
- LEDCFG, pled->ledpin);
+ rtl_dbg(rtlpriv, COMP_LED, DBG_LOUD, "LedAddr:%X ledpin=%d\n",
+ LEDCFG, pled->ledpin);
ledcfg = rtl_read_byte(rtlpriv, LEDCFG);
@@ -119,7 +119,7 @@ void rtl92se_led_control(struct ieee80211_hw *hw, enum led_ctl_mode ledaction)
ledaction == LED_CTL_POWER_ON)) {
return;
}
- RT_TRACE(rtlpriv, COMP_LED, DBG_LOUD, "ledaction %d\n", ledaction);
+ rtl_dbg(rtlpriv, COMP_LED, DBG_LOUD, "ledaction %d\n", ledaction);
_rtl92se_sw_led_control(hw, ledaction);
}
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c
index f377531bc2bd3..cd735d61f6304 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c
@@ -19,15 +19,15 @@ u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask)
struct rtl_priv *rtlpriv = rtl_priv(hw);
u32 returnvalue = 0, originalvalue, bitshift;
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), bitmask(%#x)\n",
- regaddr, bitmask);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), bitmask(%#x)\n",
+ regaddr, bitmask);
originalvalue = rtl_read_dword(rtlpriv, regaddr);
bitshift = calculate_bit_shift(bitmask);
returnvalue = (originalvalue & bitmask) >> bitshift;
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE, "BBR MASK=0x%x Addr[0x%x]=0x%x\n",
- bitmask, regaddr, originalvalue);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "BBR MASK=0x%x Addr[0x%x]=0x%x\n",
+ bitmask, regaddr, originalvalue);
return returnvalue;
@@ -39,9 +39,9 @@ void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
struct rtl_priv *rtlpriv = rtl_priv(hw);
u32 originalvalue, bitshift;
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), bitmask(%#x), data(%#x)\n",
- regaddr, bitmask, data);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), bitmask(%#x), data(%#x)\n",
+ regaddr, bitmask, data);
if (bitmask != MASKDWORD) {
originalvalue = rtl_read_dword(rtlpriv, regaddr);
@@ -51,9 +51,9 @@ void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
rtl_write_dword(rtlpriv, regaddr, data);
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), bitmask(%#x), data(%#x)\n",
- regaddr, bitmask, data);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), bitmask(%#x), data(%#x)\n",
+ regaddr, bitmask, data);
}
@@ -111,8 +111,8 @@ static u32 _rtl92s_phy_rf_serial_read(struct ieee80211_hw *hw,
retvalue = rtl_get_bbreg(hw, pphyreg->rf_rb,
BLSSI_READBACK_DATA);
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE, "RFR-%d Addr[0x%x]=0x%x\n",
- rfpath, pphyreg->rf_rb, retvalue);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "RFR-%d Addr[0x%x]=0x%x\n",
+ rfpath, pphyreg->rf_rb, retvalue);
return retvalue;
@@ -134,8 +134,8 @@ static void _rtl92s_phy_rf_serial_write(struct ieee80211_hw *hw,
data_and_addr = ((newoffset << 20) | (data & 0x000fffff)) & 0x0fffffff;
rtl_set_bbreg(hw, pphyreg->rf3wire_offset, MASKDWORD, data_and_addr);
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE, "RFW-%d Addr[0x%x]=0x%x\n",
- rfpath, pphyreg->rf3wire_offset, data_and_addr);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "RFW-%d Addr[0x%x]=0x%x\n",
+ rfpath, pphyreg->rf3wire_offset, data_and_addr);
}
@@ -145,8 +145,8 @@ u32 rtl92s_phy_query_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
struct rtl_priv *rtlpriv = rtl_priv(hw);
u32 original_value, readback_value, bitshift;
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), rfpath(%#x), bitmask(%#x)\n",
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), rfpath(%#x), bitmask(%#x)\n",
regaddr, rfpath, bitmask);
spin_lock(&rtlpriv->locks.rf_lock);
@@ -158,9 +158,9 @@ u32 rtl92s_phy_query_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
spin_unlock(&rtlpriv->locks.rf_lock);
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), rfpath(%#x), bitmask(%#x), original_value(%#x)\n",
- regaddr, rfpath, bitmask, original_value);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), rfpath(%#x), bitmask(%#x), original_value(%#x)\n",
+ regaddr, rfpath, bitmask, original_value);
return readback_value;
}
@@ -175,9 +175,9 @@ void rtl92s_phy_set_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
if (!((rtlphy->rf_pathmap >> rfpath) & 0x1))
return;
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), bitmask(%#x), data(%#x), rfpath(%#x)\n",
- regaddr, bitmask, data, rfpath);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), bitmask(%#x), data(%#x), rfpath(%#x)\n",
+ regaddr, bitmask, data, rfpath);
spin_lock(&rtlpriv->locks.rf_lock);
@@ -192,9 +192,9 @@ void rtl92s_phy_set_rf_reg(struct ieee80211_hw *hw, enum radio_path rfpath,
spin_unlock(&rtlpriv->locks.rf_lock);
- RT_TRACE(rtlpriv, COMP_RF, DBG_TRACE,
- "regaddr(%#x), bitmask(%#x), data(%#x), rfpath(%#x)\n",
- regaddr, bitmask, data, rfpath);
+ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE,
+ "regaddr(%#x), bitmask(%#x), data(%#x), rfpath(%#x)\n",
+ regaddr, bitmask, data, rfpath);
}
@@ -227,9 +227,9 @@ void rtl92s_phy_set_bw_mode(struct ieee80211_hw *hw,
struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
u8 reg_bw_opmode;
- RT_TRACE(rtlpriv, COMP_SCAN, DBG_TRACE, "Switch to %s bandwidth\n",
- rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20 ?
- "20MHz" : "40MHz");
+ rtl_dbg(rtlpriv, COMP_SCAN, DBG_TRACE, "Switch to %s bandwidth\n",
+ rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20 ?
+ "20MHz" : "40MHz");
if (rtlphy->set_bwmode_inprogress)
return;
@@ -284,7 +284,7 @@ void rtl92s_phy_set_bw_mode(struct ieee80211_hw *hw,
rtl92s_phy_rf6052_set_bandwidth(hw, rtlphy->current_chan_bw);
rtlphy->set_bwmode_inprogress = false;
- RT_TRACE(rtlpriv, COMP_SCAN, DBG_TRACE, "<==\n");
+ rtl_dbg(rtlpriv, COMP_SCAN, DBG_TRACE, "<==\n");
}
static bool _rtl92s_phy_set_sw_chnl_cmdarray(struct swchnlcmd *cmdtable,
@@ -422,8 +422,8 @@ u8 rtl92s_phy_sw_chnl(struct ieee80211_hw *hw)
u32 delay;
bool ret;
- RT_TRACE(rtlpriv, COMP_SCAN, DBG_TRACE, "switch to channel%d\n",
- rtlphy->current_channel);
+ rtl_dbg(rtlpriv, COMP_SCAN, DBG_TRACE, "switch to channel%d\n",
+ rtlphy->current_channel);
if (rtlphy->sw_chnl_inprogress)
return 0;
@@ -459,7 +459,7 @@ u8 rtl92s_phy_sw_chnl(struct ieee80211_hw *hw)
rtlphy->sw_chnl_inprogress = false;
- RT_TRACE(rtlpriv, COMP_SCAN, DBG_TRACE, "<==\n");
+ rtl_dbg(rtlpriv, COMP_SCAN, DBG_TRACE, "<==\n");
return 1;
}
@@ -518,20 +518,19 @@ bool rtl92s_phy_set_rf_power_state(struct ieee80211_hw *hw,
u32 initializecount = 0;
do {
initializecount++;
- RT_TRACE(rtlpriv, COMP_RF, DBG_DMESG,
- "IPS Set eRf nic enable\n");
+ rtl_dbg(rtlpriv, COMP_RF, DBG_DMESG,
+ "IPS Set eRf nic enable\n");
rtstatus = rtl_ps_enable_nic(hw);
} while (!rtstatus && (initializecount < 10));
RT_CLEAR_PS_LEVEL(ppsc,
RT_RF_OFF_LEVL_HALT_NIC);
} else {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG,
- "awake, sleeped:%d ms state_inap:%x\n",
- jiffies_to_msecs(jiffies -
- ppsc->
- last_sleep_jiffies),
- rtlpriv->psc.state_inap);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_DMESG,
+ "awake, slept:%d ms state_inap:%x\n",
+ jiffies_to_msecs(jiffies -
+ ppsc->last_sleep_jiffies),
+ rtlpriv->psc.state_inap);
ppsc->last_awake_jiffies = jiffies;
rtl_write_word(rtlpriv, CMDR, 0x37FC);
rtl_write_byte(rtlpriv, TXPAUSE, 0x00);
@@ -548,8 +547,8 @@ bool rtl92s_phy_set_rf_power_state(struct ieee80211_hw *hw,
}
case ERFOFF:{
if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_HALT_NIC) {
- RT_TRACE(rtlpriv, COMP_RF, DBG_DMESG,
- "IPS Set eRf nic disable\n");
+ rtl_dbg(rtlpriv, COMP_RF, DBG_DMESG,
+ "IPS Set eRf nic disable\n");
rtl_ps_disable_nic(hw);
RT_SET_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_HALT_NIC);
} else {
@@ -574,34 +573,34 @@ bool rtl92s_phy_set_rf_power_state(struct ieee80211_hw *hw,
queue_id++;
continue;
} else {
- RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
- "eRf Off/Sleep: %d times TcbBusyQueue[%d] = %d before doze!\n",
- i + 1, queue_id,
- skb_queue_len(&ring->queue));
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
+ "eRf Off/Sleep: %d times TcbBusyQueue[%d] = %d before doze!\n",
+ i + 1, queue_id,
+ skb_queue_len(&ring->queue));
udelay(10);
i++;
}
if (i >= MAX_DOZE_WAITING_TIMES_9x) {
- RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
- "ERFOFF: %d times TcbBusyQueue[%d] = %d !\n",
- MAX_DOZE_WAITING_TIMES_9x,
- queue_id,
- skb_queue_len(&ring->queue));
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_WARNING,
+ "ERFOFF: %d times TcbBusyQueue[%d] = %d !\n",
+ MAX_DOZE_WAITING_TIMES_9x,
+ queue_id,
+ skb_queue_len(&ring->queue));
break;
}
}
- RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG,
- "Set ERFSLEEP awaked:%d ms\n",
- jiffies_to_msecs(jiffies -
- ppsc->last_awake_jiffies));
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_DMESG,
+ "Set ERFSLEEP awaked:%d ms\n",
+ jiffies_to_msecs(jiffies -
+ ppsc->last_awake_jiffies));
- RT_TRACE(rtlpriv, COMP_POWER, DBG_DMESG,
- "sleep awaked:%d ms state_inap:%x\n",
- jiffies_to_msecs(jiffies -
- ppsc->last_awake_jiffies),
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_DMESG,
+ "sleep awaked:%d ms state_inap:%x\n",
+ jiffies_to_msecs(jiffies -
+ ppsc->last_awake_jiffies),
rtlpriv->psc.state_inap);
ppsc->last_sleep_jiffies = jiffies;
_rtl92se_phy_set_rf_sleep(hw);
@@ -956,7 +955,7 @@ u8 rtl92s_phy_config_rf(struct ieee80211_hw *hw, enum radio_path rfpath)
radio_b_tblen = RADIOB_ARRAYLENGTH;
}
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "Radio No %x\n", rfpath);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, "Radio No %x\n", rfpath);
rtstatus = true;
switch (rfpath) {
@@ -1076,20 +1075,20 @@ void rtl92s_phy_get_hw_reg_originalvalue(struct ieee80211_hw *hw)
ROFDM0_XCAGCCORE1, MASKBYTE0);
rtlphy->default_initialgain[3] = rtl_get_bbreg(hw,
ROFDM0_XDAGCCORE1, MASKBYTE0);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "Default initial gain (c50=0x%x, c58=0x%x, c60=0x%x, c68=0x%x)\n",
- rtlphy->default_initialgain[0],
- rtlphy->default_initialgain[1],
- rtlphy->default_initialgain[2],
- rtlphy->default_initialgain[3]);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "Default initial gain (c50=0x%x, c58=0x%x, c60=0x%x, c68=0x%x)\n",
+ rtlphy->default_initialgain[0],
+ rtlphy->default_initialgain[1],
+ rtlphy->default_initialgain[2],
+ rtlphy->default_initialgain[3]);
/* read framesync */
rtlphy->framesync = rtl_get_bbreg(hw, ROFDM0_RXDETECTOR3, MASKBYTE0);
rtlphy->framesync_c34 = rtl_get_bbreg(hw, ROFDM0_RXDETECTOR2,
MASKDWORD);
- RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
- "Default framesync (0x%x) = 0x%x\n",
- ROFDM0_RXDETECTOR3, rtlphy->framesync);
+ rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD,
+ "Default framesync (0x%x) = 0x%x\n",
+ ROFDM0_RXDETECTOR3, rtlphy->framesync);
}
@@ -1151,10 +1150,10 @@ void rtl92s_phy_set_txpower(struct ieee80211_hw *hw, u8 channel)
_rtl92s_phy_get_txpower_index(hw, channel, &cckpowerlevel[0],
&ofdmpowerlevel[0]);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Channel-%d, cckPowerLevel (A / B) = 0x%x / 0x%x, ofdmPowerLevel (A / B) = 0x%x / 0x%x\n",
- channel, cckpowerlevel[0], cckpowerlevel[1],
- ofdmpowerlevel[0], ofdmpowerlevel[1]);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Channel-%d, cckPowerLevel (A / B) = 0x%x / 0x%x, ofdmPowerLevel (A / B) = 0x%x / 0x%x\n",
+ channel, cckpowerlevel[0], cckpowerlevel[1],
+ ofdmpowerlevel[0], ofdmpowerlevel[1]);
_rtl92s_phy_ccxpower_indexcheck(hw, channel, &cckpowerlevel[0],
&ofdmpowerlevel[0]);
@@ -1212,17 +1211,17 @@ static void _rtl92s_phy_set_fwcmd_io(struct ieee80211_hw *hw)
skip:
switch (rtlhal->current_fwcmd_io) {
case FW_CMD_RA_RESET:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_RESET\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_RESET\n");
rtl_write_dword(rtlpriv, WFM5, FW_RA_RESET);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_RA_ACTIVE:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_ACTIVE\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_ACTIVE\n");
rtl_write_dword(rtlpriv, WFM5, FW_RA_ACTIVE);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_RA_REFRESH_N:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_REFRESH_N\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_RA_REFRESH_N\n");
input = FW_RA_REFRESH;
rtl_write_dword(rtlpriv, WFM5, input);
rtl92s_phy_chk_fwcmd_iodone(hw);
@@ -1230,29 +1229,29 @@ static void _rtl92s_phy_set_fwcmd_io(struct ieee80211_hw *hw)
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_RA_REFRESH_BG:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG,
- "FW_CMD_RA_REFRESH_BG\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG,
+ "FW_CMD_RA_REFRESH_BG\n");
rtl_write_dword(rtlpriv, WFM5, FW_RA_REFRESH);
rtl92s_phy_chk_fwcmd_iodone(hw);
rtl_write_dword(rtlpriv, WFM5, FW_RA_DISABLE_RSSI_MASK);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_RA_REFRESH_N_COMB:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG,
- "FW_CMD_RA_REFRESH_N_COMB\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG,
+ "FW_CMD_RA_REFRESH_N_COMB\n");
input = FW_RA_IOT_N_COMB;
rtl_write_dword(rtlpriv, WFM5, input);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_RA_REFRESH_BG_COMB:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG,
- "FW_CMD_RA_REFRESH_BG_COMB\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG,
+ "FW_CMD_RA_REFRESH_BG_COMB\n");
input = FW_RA_IOT_BG_COMB;
rtl_write_dword(rtlpriv, WFM5, input);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_IQK_ENABLE:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_IQK_ENABLE\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_IQK_ENABLE\n");
rtl_write_dword(rtlpriv, WFM5, FW_IQK_ENABLE);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
@@ -1287,7 +1286,7 @@ static void _rtl92s_phy_set_fwcmd_io(struct ieee80211_hw *hw)
rtl_set_bbreg(hw, RCCK0_CCA, MASKBYTE2, 0xcd);
break;
case FW_CMD_LPS_ENTER:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_LPS_ENTER\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_LPS_ENTER\n");
current_aid = rtlpriv->mac80211.assoc_id;
rtl_write_dword(rtlpriv, WFM5, (FW_LPS_ENTER |
((current_aid | 0xc000) << 8)));
@@ -1296,18 +1295,18 @@ static void _rtl92s_phy_set_fwcmd_io(struct ieee80211_hw *hw)
* turbo mode until driver leave LPS */
break;
case FW_CMD_LPS_LEAVE:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_LPS_LEAVE\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_LPS_LEAVE\n");
rtl_write_dword(rtlpriv, WFM5, FW_LPS_LEAVE);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_ADD_A2_ENTRY:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_ADD_A2_ENTRY\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_DMESG, "FW_CMD_ADD_A2_ENTRY\n");
rtl_write_dword(rtlpriv, WFM5, FW_ADD_A2_ENTRY);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
case FW_CMD_CTRL_DM_BY_DRIVER:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "FW_CMD_CTRL_DM_BY_DRIVER\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "FW_CMD_CTRL_DM_BY_DRIVER\n");
rtl_write_dword(rtlpriv, WFM5, FW_CTRL_DM_BY_DRIVER);
rtl92s_phy_chk_fwcmd_iodone(hw);
break;
@@ -1332,9 +1331,9 @@ bool rtl92s_phy_set_fw_cmd(struct ieee80211_hw *hw, enum fwcmd_iotype fw_cmdio)
u16 fw_cmdmap = FW_CMD_IO_QUERY(rtlpriv);
bool postprocessing = false;
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "Set FW Cmd(%#x), set_fwcmd_inprogress(%d)\n",
- fw_cmdio, rtlhal->set_fwcmd_inprogress);
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "Set FW Cmd(%#x), set_fwcmd_inprogress(%d)\n",
+ fw_cmdio, rtlhal->set_fwcmd_inprogress);
do {
/* We re-map to combined FW CMD ones if firmware version */
@@ -1371,30 +1370,30 @@ bool rtl92s_phy_set_fw_cmd(struct ieee80211_hw *hw, enum fwcmd_iotype fw_cmdio)
* DM map table in the future. */
switch (fw_cmdio) {
case FW_CMD_RA_INIT:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, "RA init!!\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD, "RA init!!\n");
fw_cmdmap |= FW_RA_INIT_CTL;
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
/* Clear control flag to sync with FW. */
FW_CMD_IO_CLR(rtlpriv, FW_RA_INIT_CTL);
break;
case FW_CMD_DIG_DISABLE:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "Set DIG disable!!\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "Set DIG disable!!\n");
fw_cmdmap &= ~FW_DIG_ENABLE_CTL;
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
break;
case FW_CMD_DIG_ENABLE:
case FW_CMD_DIG_RESUME:
if (!(rtlpriv->dm.dm_flag & HAL_DM_DIG_DISABLE)) {
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "Set DIG enable or resume!!\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "Set DIG enable or resume!!\n");
fw_cmdmap |= (FW_DIG_ENABLE_CTL | FW_SS_CTL);
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
}
break;
case FW_CMD_DIG_HALT:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "Set DIG halt!!\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "Set DIG halt!!\n");
fw_cmdmap &= ~(FW_DIG_ENABLE_CTL | FW_SS_CTL);
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
break;
@@ -1409,9 +1408,9 @@ bool rtl92s_phy_set_fw_cmd(struct ieee80211_hw *hw, enum fwcmd_iotype fw_cmdio)
fw_param |= ((thermalval << 24) |
(rtlefuse->thermalmeter[0] << 16));
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "Set TxPwr tracking!! FwCmdMap(%#x), FwParam(%#x)\n",
- fw_cmdmap, fw_param);
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "Set TxPwr tracking!! FwCmdMap(%#x), FwParam(%#x)\n",
+ fw_cmdmap, fw_param);
FW_CMD_PARA_SET(rtlpriv, fw_param);
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
@@ -1431,9 +1430,9 @@ bool rtl92s_phy_set_fw_cmd(struct ieee80211_hw *hw, enum fwcmd_iotype fw_cmdio)
/* Clear FW parameter in terms of RA parts. */
fw_param &= FW_RA_PARAM_CLR;
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "[FW CMD] [New Version] Set RA/IOT Comb in n mode!! FwCmdMap(%#x), FwParam(%#x)\n",
- fw_cmdmap, fw_param);
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "[FW CMD] [New Version] Set RA/IOT Comb in n mode!! FwCmdMap(%#x), FwParam(%#x)\n",
+ fw_cmdmap, fw_param);
FW_CMD_PARA_SET(rtlpriv, fw_param);
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
@@ -1519,8 +1518,8 @@ bool rtl92s_phy_set_fw_cmd(struct ieee80211_hw *hw, enum fwcmd_iotype fw_cmdio)
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
break;
case FW_CMD_PAPE_CONTROL:
- RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD,
- "[FW CMD] Set PAPE Control\n");
+ rtl_dbg(rtlpriv, COMP_CMD, DBG_LOUD,
+ "[FW CMD] Set PAPE Control\n");
fw_cmdmap &= ~FW_PAPE_CTL_BY_SW_HW;
FW_CMD_IO_SET(rtlpriv, fw_cmdmap);
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.c
index a37855f57e76f..85f6d0d4dd799 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.c
@@ -95,13 +95,13 @@ static void _rtl92s_get_powerbase(struct ieee80211_hw *hw, u8 *p_pwrlevel,
}
if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20_40) {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "40MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
- p_final_pwridx[0], p_final_pwridx[1]);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "40MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
+ p_final_pwridx[0], p_final_pwridx[1]);
} else {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "20MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
- p_final_pwridx[0], p_final_pwridx[1]);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "20MHz finalpwr_idx (A / B) = 0x%x / 0x%x\n",
+ p_final_pwridx[0], p_final_pwridx[1]);
}
}
@@ -124,9 +124,9 @@ static void _rtl92s_set_antennadiff(struct ieee80211_hw *hw,
if (ant_pwr_diff < -8)
ant_pwr_diff = -8;
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Antenna Diff from RF-B to RF-A = %d (0x%x)\n",
- ant_pwr_diff, ant_pwr_diff & 0xf);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Antenna Diff from RF-B to RF-A = %d (0x%x)\n",
+ ant_pwr_diff, ant_pwr_diff & 0xf);
ant_pwr_diff &= 0xf;
}
@@ -143,8 +143,8 @@ static void _rtl92s_set_antennadiff(struct ieee80211_hw *hw,
rtl_set_bbreg(hw, RFPGA0_TXGAINSTAGE, (BXBTXAGC | BXCTXAGC | BXDTXAGC),
u4reg_val);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "Write BCD-Diff(0x%x) = 0x%x\n",
- RFPGA0_TXGAINSTAGE, u4reg_val);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD, "Write BCD-Diff(0x%x) = 0x%x\n",
+ RFPGA0_TXGAINSTAGE, u4reg_val);
}
static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
@@ -169,8 +169,8 @@ static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
writeval = rtlphy->mcs_offset[chnlgroup][index] +
((index < 2) ? pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "RTK better performance, writeval = 0x%x\n", writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "RTK better performance, writeval = 0x%x\n", writeval);
break;
case 1:
/* Realtek regulatory increase power diff defined
@@ -178,9 +178,9 @@ static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20_40) {
writeval = ((index < 2) ? pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Realtek regulatory, 40MHz, writeval = 0x%x\n",
- writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Realtek regulatory, 40MHz, writeval = 0x%x\n",
+ writeval);
} else {
chnlgroup = 0;
@@ -199,16 +199,16 @@ static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
+ ((index < 2) ?
pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Realtek regulatory, 20MHz, writeval = 0x%x\n",
- writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Realtek regulatory, 20MHz, writeval = 0x%x\n",
+ writeval);
}
break;
case 2:
/* Better regulatory don't increase any power diff */
writeval = ((index < 2) ? pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Better regulatory, writeval = 0x%x\n", writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Better regulatory, writeval = 0x%x\n", writeval);
break;
case 3:
/* Customer defined power diff. increase power diff
@@ -216,15 +216,15 @@ static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
chnlgroup = 0;
if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_20_40) {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "customer's limit, 40MHz = 0x%x\n",
- rtlefuse->pwrgroup_ht40
- [RF90_PATH_A][chnl - 1]);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "customer's limit, 40MHz = 0x%x\n",
+ rtlefuse->pwrgroup_ht40
+ [RF90_PATH_A][chnl - 1]);
} else {
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "customer's limit, 20MHz = 0x%x\n",
- rtlefuse->pwrgroup_ht20
- [RF90_PATH_A][chnl - 1]);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "customer's limit, 20MHz = 0x%x\n",
+ rtlefuse->pwrgroup_ht20
+ [RF90_PATH_A][chnl - 1]);
}
for (i = 0; i < 4; i++) {
@@ -256,20 +256,20 @@ static void _rtl92s_get_txpower_writeval_byregulatory(struct ieee80211_hw *hw,
(pwrdiff_limit[2] << 16) |
(pwrdiff_limit[1] << 8) |
(pwrdiff_limit[0]);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Customer's limit = 0x%x\n", customer_limit);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Customer's limit = 0x%x\n", customer_limit);
writeval = customer_limit + ((index < 2) ?
pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "Customer, writeval = 0x%x\n", writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "Customer, writeval = 0x%x\n", writeval);
break;
default:
chnlgroup = 0;
writeval = rtlphy->mcs_offset[chnlgroup][index] +
((index < 2) ? pwrbase0 : pwrbase1);
- RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD,
- "RTK better performance, writeval = 0x%x\n", writeval);
+ rtl_dbg(rtlpriv, COMP_POWER, DBG_LOUD,
+ "RTK better performance, writeval = 0x%x\n", writeval);
break;
}
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c
index 1c7ee569f4bf9..4c4a1201d420f 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c
@@ -66,8 +66,8 @@ static void rtl92se_fw_cb(const struct firmware *firmware, void *context)
struct rt_firmware *pfirmware = NULL;
char *fw_name = "rtlwifi/rtl8192sefw.bin";
- RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD,
- "Firmware callback routine entered!\n");
+ rtl_dbg(rtlpriv, COMP_ERR, DBG_LOUD,
+ "Firmware callback routine entered!\n");
complete(&rtlpriv->firmware_loading_complete);
if (!firmware) {
pr_err("Firmware %s not available\n", fw_name);
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.c
index efb432c6d7858..4ec8c93620601 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.c
@@ -333,8 +333,8 @@ void rtl92se_tx_fill_desc(struct ieee80211_hw *hw,
u8 bw_40 = 0;
if (pci_dma_mapping_error(rtlpci->pdev, mapping)) {
- RT_TRACE(rtlpriv, COMP_SEND, DBG_TRACE,
- "DMA mapping error\n");
+ rtl_dbg(rtlpriv, COMP_SEND, DBG_TRACE,
+ "DMA mapping error\n");
return;
}
if (mac->opmode == NL80211_IFTYPE_STATION) {
@@ -487,7 +487,7 @@ void rtl92se_tx_fill_desc(struct ieee80211_hw *hw,
/* DOWRD 8 */
SET_TX_DESC_TX_BUFFER_ADDRESS(pdesc, mapping);
- RT_TRACE(rtlpriv, COMP_SEND, DBG_TRACE, "\n");
+ rtl_dbg(rtlpriv, COMP_SEND, DBG_TRACE, "\n");
}
void rtl92se_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
@@ -502,8 +502,8 @@ void rtl92se_tx_fill_cmddesc(struct ieee80211_hw *hw, u8 *pdesc,
PCI_DMA_TODEVICE);
if (pci_dma_mapping_error(rtlpci->pdev, mapping)) {
- RT_TRACE(rtlpriv, COMP_SEND, DBG_TRACE,
- "DMA mapping error\n");
+ rtl_dbg(rtlpriv, COMP_SEND, DBG_TRACE,
+ "DMA mapping error\n");
return;
}
/* Clear all status */
--
2.39.5
next prev parent reply other threads:[~2025-03-11 15:04 UTC|newest]
Thread overview: 336+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-11 14:56 [PATCH 5.4 000/328] 5.4.291-rc1 review Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 001/328] perf cs-etm: Add missing variable in cs_etm__process_queues() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 002/328] udf: Fix use of check_add_overflow() with mixed type arguments Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 003/328] overflow: Add __must_check attribute to check_*() helpers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 004/328] overflow: Correct check_shl_overflow() comment Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 005/328] overflow: Allow mixed type arguments Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 006/328] afs: Fix directory format encoding struct Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 007/328] nbd: dont allow reconnect after disconnect Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 008/328] partitions: ldm: remove the initial kernel-doc notation Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 009/328] drm/etnaviv: Fix page property being used for non writecombine buffers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 010/328] drm/amdgpu: Fix potential NULL pointer dereference in atomctrl_get_smc_sclk_range_table Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 011/328] ipmi: ipmb: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 012/328] wifi: rtlwifi: do not complete firmware loading needlessly Greg Kroah-Hartman
2025-03-11 14:56 ` Greg Kroah-Hartman [this message]
2025-03-11 14:56 ` [PATCH 5.4 014/328] wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 015/328] wifi: rtlwifi: usb: fix workqueue leak when probe fails Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 016/328] dt-bindings: mmc: controller: clarify the address-cells description Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 017/328] rtlwifi: replace usage of found with dedicated list iterator variable Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 018/328] wifi: rtlwifi: remove unused timer and related code Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 019/328] wifi: rtlwifi: remove unused dualmac control leftovers Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 020/328] wifi: rtlwifi: remove unused check_buddy_priv Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 021/328] wifi: rtlwifi: fix memory leaks and invalid access at probe error path Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 022/328] wifi: rtlwifi: pci: wait for firmware loading before releasing memory Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 023/328] cpupower: fix TSC MHz calculation Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 024/328] team: prevent adding a device which is already a team device lower Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 025/328] regulator: of: Implement the unwind path of of_regulator_match() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 026/328] wifi: wlcore: fix unbalanced pm_runtime calls Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 027/328] selftests/harness: Display signed values correctly Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 028/328] selftests: harness: fix printing of mismatch values in __EXPECT() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 029/328] clk: analogbits: Fix incorrect calculation of vco rate delta Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 030/328] net: let net.core.dev_weight always be non-zero Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 031/328] net/mlxfw: Drop hard coded max FW flash image size Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 032/328] net: sched: Disallow replacing of child qdisc from one parent to another Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 033/328] tools/testing/selftests/bpf/test_tc_tunnel.sh: Fix wait for server bind Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 034/328] ASoC: sun4i-spdif: Add clock multiplier settings Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 035/328] perf header: Fix one memory leakage in process_bpf_btf() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 036/328] perf header: Fix one memory leakage in process_bpf_prog_info() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 037/328] ktest.pl: Remove unused declarations in run_bisect_test function Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 038/328] padata: fix sysfs store callback check Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 039/328] perf top: Dont complain about lack of vmlinux when not resolving some kernel samples Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 040/328] perf report: Fix misleading help message about --demangle Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 041/328] bpf: Send signals asynchronously if !preemptible Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 042/328] RDMA/mlx4: Avoid false error about access to uninitialized gids array Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 043/328] rdma/cxgb4: Prevent potential integer overflow on 32bit Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 044/328] arm64: dts: mediatek: mt8173-evb: Drop regulator-compatible property Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 045/328] arm64: dts: mediatek: mt8173-evb: Fix MT6397 PMIC sub-node names Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 046/328] ARM: dts: mediatek: mt7623: fix IR nodename Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 047/328] fbdev: omapfb: Fix an OF node leak in dss_of_port_get_parent_device() Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 048/328] media: rc: iguanair: handle timeouts Greg Kroah-Hartman
2025-03-11 14:56 ` [PATCH 5.4 049/328] media: lmedm04: Use GFP_KERNEL for URB allocation/submission Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 050/328] media: lmedm04: Handle errors for lme2510_int_read Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 051/328] PCI: endpoint: Destroy the EPC device in devm_pci_epc_destroy() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 052/328] media: mipi-csis: Add check for clk_enable() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 053/328] media: camif-core: " Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 054/328] media: uvcvideo: Propagate buf->error to userspace Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 055/328] staging: media: imx: fix OF node leak in imx_media_add_of_subdevs() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 056/328] scsi: mpt3sas: Set ioc->manu_pg11.EEDPTagMode directly to 1 Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 057/328] scsi: ufs: bsg: Delete bsg_dev when setting up bsg fails Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 058/328] ocfs2: mark dquot as inactive if failed to start trans while releasing dquot Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 059/328] module: Extend the preempt disabled section in dereference_symbol_descriptor() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 060/328] dmaengine: ti: edma: fix OF node reference leaks in edma_driver Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 061/328] rtc: pcf85063: fix potential OOB write in PCF85063 NVMEM read Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 062/328] ubifs: skip dumping tnc tree when zroot is null Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 063/328] net: fec: implement TSO descriptor cleanup Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 064/328] ipmr: do not call mr_mfc_uses_dev() for unres entries Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 065/328] PM: hibernate: Add error handling for syscore_suspend() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 066/328] net: rose: fix timer races against user threads Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 067/328] net: davicom: fix UAF in dm9000_drv_remove Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 068/328] perf trace: Fix runtime error of index out of bounds Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 069/328] vsock: Allow retrying on connect() failure Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 070/328] net: sh_eth: Fix missing rtnl lock in suspend/resume path Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 071/328] genksyms: fix memory leak when the same symbol is added from source Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 072/328] genksyms: fix memory leak when the same symbol is read from *.symref file Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 073/328] hexagon: fix using plain integer as NULL pointer warning in cmpxchg Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 074/328] hexagon: Fix unbalanced spinlock in die() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 075/328] NFSD: Reset cb_seq_status after NFS4ERR_DELAY Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 076/328] ktest.pl: Check kernelrelease return in get_version Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 077/328] drivers/card_reader/rtsx_usb: Restore interrupt based detection Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 078/328] usb: typec: tcpm: set SRC_SEND_CAPABILITIES timeout to PD_T_SENDER_RESPONSE Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 079/328] HID: core: Fix assumption that Resolution Multipliers must be in Logical Collections Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 080/328] media: uvcvideo: Fix double free in error path Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 081/328] usb: gadget: f_tcm: Dont free command immediately Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 082/328] btrfs: output the reason for open_ctree() failure Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 083/328] btrfs: fix use-after-free when attempting to join an aborted transaction Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 084/328] btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 085/328] sched: Dont try to catch up excess steal time Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 086/328] x86/amd_nb: Restrict init function to AMD-based systems Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 087/328] printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 088/328] tun: fix group permission check Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 089/328] mmc: core: Respect quirk_max_rate for non-UHS SDIO card Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 090/328] wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 091/328] tomoyo: dont emit warning in tomoyo_write_control() Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 092/328] mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 093/328] HID: Wacom: Add PCI Wacom device support Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 094/328] APEI: GHES: Have GHES honor the panic= setting Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 095/328] x86/mm: Dont disable PCID when INVLPG has been fixed by microcode Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 096/328] spi-mxs: Fix chipselect glitch Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 097/328] nilfs2: move page release outside of nilfs_delete_entry and nilfs_set_link Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 098/328] nilfs2: eliminate staggered calls to kunmap in nilfs_rename Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 099/328] nilfs2: handle errors that nilfs_prepare_chunk() may return Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 100/328] media: uvcvideo: Only save async fh if success Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 101/328] media: uvcvideo: Remove dangling pointers Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 102/328] sched: sch_cake: add bounds checks to host bulk flow fairness counts Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 103/328] kbuild: userprogs: use correct lld when linking through clang Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 104/328] tasklet: Introduce new initialization API Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 105/328] net: usb: rtl8150: use new tasklet API Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 106/328] net: usb: rtl8150: enable basic endpoint checking Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 107/328] usb: xhci: Add timeout argument in address_device USB HCD callback Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 108/328] usb: xhci: Fix NULL pointer dereference on certain command aborts Greg Kroah-Hartman
2025-03-11 14:57 ` [PATCH 5.4 109/328] nvme: handle connectivity loss in nvme_set_queue_count Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 110/328] firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 111/328] gpu: drm_dp_cec: fix broken CEC adapter properties check Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 112/328] tg3: Disable tg3 PCIe AER on system reboot Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 113/328] udp: gso: do not drop small packets when PMTU reduces Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 114/328] net: rose: lock the socket in rose_bind() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 115/328] netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 116/328] tun: revert fix group permission check Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 117/328] cpufreq: s3c64xx: Fix compilation warning Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 118/328] leds: lp8860: Write full EEPROM, not only half of it Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 119/328] s390/futex: Fix FUTEX_OP_ANDN implementation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 120/328] m68k: vga: Fix I/O defines Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 121/328] binfmt_flat: Fix integer overflow bug on 32 bit systems Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 122/328] arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 123/328] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 124/328] KVM: s390: vsie: fix some corner-cases when grabbing vsie pages Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 125/328] drm/komeda: Add check for komeda_get_layer_fourcc_list() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 126/328] Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 127/328] clk: qcom: clk-alpha-pll: fix alpha mode configuration Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 128/328] clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 129/328] perf bench: Fix undefined behavior in cmpworker() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 130/328] of: Correct child specifier used as input of the 2nd nexus node Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 131/328] of: Fix of_find_node_opts_by_path() handling of alias+path+options Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 132/328] of: reserved-memory: Fix using wrong number of cells to get property alignment Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 133/328] HID: hid-sensor-hub: dont use stale platform-data on remove Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 134/328] wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 135/328] usb: gadget: f_tcm: Translate error to sense Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 136/328] usb: gadget: f_tcm: Decrement command ref count on cleanup Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 137/328] usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 138/328] usb: gadget: f_tcm: Dont prepare BOT write request twice Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 139/328] soc: qcom: socinfo: Avoid out of bounds read of serial number Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 140/328] serial: sh-sci: Drop __initdata macro for port_cfg Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 141/328] serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 142/328] powerpc/pseries/eeh: Fix get PE state translation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 143/328] kbuild: Move -Wenum-enum-conversion to W=2 Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 144/328] soc: qcom: smem_state: fix missing of_node_put in error path Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 145/328] media: ov5640: fix get_light_freq on auto Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 146/328] media: uvcvideo: Fix event flags in uvc_ctrl_send_events Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 147/328] media: uvcvideo: Remove redundant NULL assignment Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 148/328] crypto: qce - fix goto jump in error path Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 149/328] crypto: qce - unregister previously registered algos " Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 150/328] nvmem: core: improve range check for nvmem_cell_write() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 151/328] vfio/platform: check the bounds of read/write syscalls Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 152/328] ocfs2: fix incorrect CPU endianness conversion causing mount failure Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 153/328] ocfs2: handle a symlink read error correctly Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 154/328] nilfs2: fix possible int overflows in nilfs_fiemap() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 155/328] NFC: nci: Add bounds checking in nci_hci_create_pipe() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 156/328] mtd: onenand: Fix uninitialized retlen in do_otp_read() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 157/328] misc: fastrpc: Fix registered buffer page address Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 158/328] net/ncsi: wait for the last response to Deselect Package before configuring channel Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 159/328] ptp: Ensure info->enable callback is always set Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 160/328] MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 161/328] ocfs2: check dir i_size in ocfs2_find_entry Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 162/328] HID: multitouch: Add NULL check in mt_input_configured Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 163/328] ndisc: ndisc_send_redirect() must use dev_get_by_index_rcu() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 164/328] vrf: use RCU protection in l3mdev_l3_out() Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 165/328] team: better TEAM_OPTION_TYPE_STRING validation Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 166/328] arm64: cacheinfo: Avoid out-of-bounds write to cacheinfo array Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 167/328] gpio: bcm-kona: Fix GPIO lock/unlock for banks above bank 0 Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 168/328] gpio: bcm-kona: Make sure GPIO bits are unlocked when requesting IRQ Greg Kroah-Hartman
2025-03-11 14:58 ` [PATCH 5.4 169/328] gpio: bcm-kona: Add missing newline to dev_err format string Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 170/328] xen: remove a confusing comment on auto-translated guest I/O Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 171/328] x86/xen: allow larger contiguous memory regions in PV guests Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 172/328] media: cxd2841er: fix 64-bit division on gcc-9 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 173/328] vfio/pci: Enable iowrite64 and ioread64 for vfio pci Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 174/328] Grab mm lock before grabbing pt lock Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 175/328] orangefs: fix a oob in orangefs_debug_write Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 176/328] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet 5V Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 177/328] batman-adv: fix panic during interface removal Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 178/328] usb: roles: set switch registered flag early on Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 179/328] usb: gadget: udc: renesas_usb3: Fix compiler warning Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 180/328] usb: dwc2: gadget: remove of_node reference upon udc_stop Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 181/328] USB: pci-quirks: Fix HCCPARAMS register error for LS7A EHCI Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 182/328] USB: quirks: add USB_QUIRK_NO_LPM quirk for Teclast dist Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 183/328] USB: Add USB_QUIRK_NO_LPM quirk for sony xperia xz1 smartphone Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 184/328] usb: gadget: f_midi: fix MIDI Streaming descriptor lengths Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 185/328] USB: hub: Ignore non-compliant devices with too many configs or interfaces Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 186/328] USB: cdc-acm: Fill in Renesas R-Car D3 USB Download mode quirk Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 187/328] usb: cdc-acm: Check control transfer buffer size before access Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 188/328] usb: cdc-acm: Fix handling of oversized fragments Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 189/328] USB: serial: option: add MeiG Smart SLM828 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 190/328] USB: serial: option: add Telit Cinterion FN990B compositions Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 191/328] USB: serial: option: fix Telit Cinterion FN990A name Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 192/328] USB: serial: option: drop MeiG Smart defines Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 193/328] can: c_can: fix unbalanced runtime PM disable in error path Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 194/328] can: j1939: j1939_sk_send_loop(): fix unable to send messages with data length zero Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 195/328] alpha: make stack 16-byte aligned (most cases) Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 196/328] serial: 8250: Fix fifo underflow on flush Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 197/328] alpha: align stack for page fault and user unaligned trap handlers Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 198/328] gpio: stmpe: Check return value of stmpe_reg_read in stmpe_gpio_irq_sync_unlock Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 199/328] partitions: mac: fix handling of bogus partition table Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 200/328] regmap-irq: Add missing kfree() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 201/328] net: treat possible_net_t net pointer as an RCU one and add read_pnet_rcu() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 202/328] net: add dev_net_rcu() helper Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 203/328] ipv4: use RCU protection in rt_is_expired() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 204/328] ipv4: use RCU protection in inet_select_addr() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 205/328] ipv6: use RCU protection in ip6_default_advmss() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 206/328] ndisc: use RCU protection in ndisc_alloc_skb() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 207/328] neighbour: delete redundant judgment statements Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 208/328] neighbour: use RCU protection in __neigh_notify() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 209/328] arp: use RCU protection in arp_xmit() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 210/328] openvswitch: use RCU protection in ovs_vport_cmd_fill_info() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 211/328] ndisc: extend RCU protection in ndisc_send_skb() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 212/328] alpha: replace hardcoded stack offsets with autogenerated ones Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 213/328] nilfs2: do not output warnings when clearing dirty buffers Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 214/328] nilfs2: do not force clear folio if buffer is referenced Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 215/328] nilfs2: protect access to buffers with no active references Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 216/328] can: ems_pci: move ASIX AX99100 ids to pci_ids.h Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 217/328] serial: 8250_pci: add support for ASIX AX99100 Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 218/328] parport_pc: " Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 219/328] x86/i8253: Disable PIT timer 0 when not in use Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 220/328] Revert "btrfs: avoid monopolizing a core when activating a swap file" Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 221/328] btrfs: avoid monopolizing a core when activating a swap file Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 222/328] pps: Fix a use-after-free Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 223/328] ima: Fix use-after-free on a dentrys dname.name Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 224/328] vlan: introduce vlan_dev_free_egress_priority Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 225/328] vlan: move dev_put into vlan_dev_uninit Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 226/328] scsi: storvsc: Set correct data length for sending SCSI command without payload Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 227/328] driver core: bus: Fix double free in driver API bus_register() Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 228/328] crypto: testmgr - fix wrong key length for pkcs1pad Greg Kroah-Hartman
2025-03-11 14:59 ` [PATCH 5.4 229/328] crypto: testmgr - Fix wrong test case of RSA Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 230/328] crypto: testmgr - fix version number of RSA tests Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 231/328] crypto: testmgr - populate RSA CRT parameters in RSA test vectors Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 232/328] crypto: testmgr - some more fixes to " Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 233/328] mm: update mark_victim tracepoints fields Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 234/328] memcg: fix soft lockup in the OOM process Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 235/328] usb: dwc3: Increase DWC3 controller halt timeout Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 236/328] usb: dwc3: Fix timeout issue during controller enter/exit from halt state Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 237/328] usb/gadget: f_midi: convert tasklets to use new tasklet_setup() API Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 238/328] usb/gadget: f_midi: Replace tasklet with work Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 239/328] USB: gadget: f_midi: f_midi_complete to call queue_work Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 240/328] powerpc/64s/mm: Move __real_pte stubs into hash-4k.h Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 241/328] powerpc/64s: Rewrite __real_pte() and __rpte_to_hidx() as static inline Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 242/328] ALSA: hda/realtek - Add type for ALC287 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 243/328] ALSA: hda/realtek: Fixup ALC225 depop procedure Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 244/328] powerpc/code-patching: Fix KASAN hit by not flagging text patching area as VM_ALLOC Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 245/328] geneve: Fix use-after-free in geneve_find_dev() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 246/328] gtp: Suppress list corruption splat in gtp_net_exit_batch_rtnl() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 247/328] geneve: Suppress list corruption splat in geneve_destroy_tunnels() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 248/328] net: extract port range fields from fl_flow_key Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 249/328] flow_dissector: Fix handling of mixed port and port-range keys Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 250/328] flow_dissector: Fix port range key handling in BPF conversion Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 251/328] power: supply: da9150-fg: fix potential overflow Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 252/328] tee: optee: Fix supplicant wait loop Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 253/328] nfp: bpf: Add check for nfp_app_ctrl_msg_alloc() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 254/328] ALSA: hda/conexant: Add quirk for HP ProBook 450 G4 mute LED Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 255/328] acct: block access to kernel internal filesystems Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 256/328] batman-adv: Ignore neighbor throughput metrics in error case Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 257/328] batman-adv: Drop unmanaged ELP metric worker Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 258/328] sunrpc: suppress warnings for unused procfs functions Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 259/328] net: loopback: Avoid sending IP packets without an Ethernet header Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 260/328] net: cadence: macb: Synchronize stats calculations Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 261/328] ASoC: es8328: fix route from DAC to output Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 262/328] ipvs: Always clear ipvs_property flag in skb_scrub_packet() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 263/328] net: mvpp2: cls: Fixed Non IP flow, with vlan tag flow defination Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 264/328] x86/CPU: Fix warm boot hang regression on AMD SC1100 SoC systems Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 265/328] ftrace: Avoid potential division by zero in function_stat_show() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 266/328] perf/core: Fix low freq setting via IOC_PERIOD Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 267/328] usbnet: gl620a: fix endpoint checking in genelink_bind() Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 268/328] phy: tegra: xusb: reset VBUS & ID OVERRIDE Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 269/328] phy: exynos5-usbdrd: fix MPLL_MULTIPLIER and SSC_REFCLKSEL masks in refclk Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 270/328] sched/core: Prevent rescheduling when interrupts are disabled Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 271/328] pfifo_tail_enqueue: Drop new packet when sch->limit == 0 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 272/328] drop_monitor: fix incorrect initialization order Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 273/328] kernel/acct.c: use #elif instead of #end and #elif Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 274/328] kernel/acct.c: use dedicated helper to access rlimit values Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 275/328] acct: perform last write from workqueue Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 276/328] drm/amdgpu: skip BAR resizing if the bios already did it Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 277/328] drm/amdgpu: Check extended configuration space register when system uses large bar Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 278/328] drm/amdgpu: disable BAR resize on Dell G5 SE Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 279/328] Revert "of: reserved-memory: Fix using wrong number of cells to get property alignment" Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 280/328] HID: appleir: Fix potential NULL dereference at raw event handle Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 281/328] ALSA: hda: intel: Add Dell ALC3271 to power_save denylist Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 282/328] ALSA: hda/realtek: update ALC222 depop optimize Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 283/328] drm/radeon: Fix rs400_gpu_init for ATI mobility radeon Xpress 200M Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 284/328] platform/x86: thinkpad_acpi: Add battery quirk for ThinkPad X131e Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 285/328] x86/cacheinfo: Validate CPUID leaf 0x2 EDX output Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 286/328] x86/cpu: " Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 287/328] x86/cpu: Properly parse CPUID leaf 0x2 TLB descriptor 0x63 Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 288/328] wifi: cfg80211: regulatory: improve invalid hints checking Greg Kroah-Hartman
2025-03-11 15:00 ` [PATCH 5.4 289/328] wifi: nl80211: reject cooked mode if it is set along with other flags Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 290/328] rapidio: add check for rio_add_net() in rio_scan_alloc_net() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 291/328] rapidio: fix an API misues when rio_add_net() fails Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 292/328] mm/page_alloc: fix uninitialized variable Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 293/328] wifi: iwlwifi: limit printed string from FW file Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 294/328] HID: google: fix unused variable warning under !CONFIG_ACPI Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 295/328] HID: intel-ish-hid: Fix use-after-free issue in ishtp_hid_remove() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 296/328] net: gso: fix ownership in __udp_gso_segment Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 297/328] caif_virtio: fix wrong pointer check in cfv_probe() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 298/328] hwmon: (pmbus) Initialise page count in pmbus_identify() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 299/328] hwmon: (ntc_thermistor) Fix the ncpXXxh103 sensor table Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 300/328] hwmon: (ad7314) Validate leading zero bits and return error Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 301/328] llc: do not use skb_get() before dev_queue_xmit() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 302/328] hwmon: fix a NULL vs IS_ERR_OR_NULL() check in xgene_hwmon_probe() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 303/328] drm/sched: Fix preprocessor guard Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 304/328] be2net: fix sleeping while atomic bugs in be_ndo_bridge_getlink Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 305/328] ppp: Fix KMSAN uninit-value warning with bpf Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 306/328] vlan: enforce underlying device type Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 307/328] net-timestamp: support TCP GSO case for a few missing flags Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 308/328] net: ipv6: fix dst ref loop in ila lwtunnel Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 309/328] net: ipv6: fix missing dst ref drop " Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 310/328] gpio: rcar: Fix missing of_node_put() call Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 311/328] Revert "drivers/card_reader/rtsx_usb: Restore interrupt based detection" Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 312/328] usb: renesas_usbhs: Call clk_put() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 313/328] usb: renesas_usbhs: Use devm_usb_get_phy() Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 314/328] usb: quirks: Add DELAY_INIT and NO_LPM for Prolific Mass Storage Card Reader Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 315/328] usb: renesas_usbhs: Flush the notify_hotplug_work Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 316/328] usb: atm: cxacru: fix a flaw in existing endpoint checks Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 317/328] usb: typec: ucsi: increase timeout for PPM reset operations Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 318/328] usb: typec: tcpci_rt1711h: Unmask alert interrupts to fix functionality Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 319/328] usb: gadget: Set self-powered based on MaxPower and bmAttributes Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 320/328] usb: gadget: Fix setting self-powered state on suspend Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 321/328] usb: gadget: Check bmAttributes only if configuration is valid Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 322/328] xhci: pci: Fix indentation in the PCI device ID definitions Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 323/328] Squashfs: check the inode number is not the invalid value of zero Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 324/328] intel_th: pci: Add Arrow Lake support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 325/328] intel_th: pci: Add Panther Lake-H support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 326/328] intel_th: pci: Add Panther Lake-P/U support Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 327/328] slimbus: messaging: Free transaction ID in delayed interrupt scenario Greg Kroah-Hartman
2025-03-11 15:01 ` [PATCH 5.4 328/328] eeprom: digsy_mtc: Make GPIO lookup table match the device Greg Kroah-Hartman
2025-03-11 18:38 ` [PATCH 5.4 000/328] 5.4.291-rc1 review Florian Fainelli
2025-03-12 8:05 ` Greg Kroah-Hartman
2025-03-12 1:01 ` Shuah Khan
2025-03-12 12:56 ` [External] : " ALOK TIWARI
2025-03-13 7:19 ` Naresh Kamboju
2025-03-13 13:59 ` Florian Fainelli
2025-03-13 14:07 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250311145715.405258959@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=Larry.Finger@lwfinger.net \
--cc=kvalo@codeaurora.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox