mirror of https://gitee.com/openkylin/linux.git
staging: rtlwifi: pr_err() strings should end with newlines
pr_err() messages should end with a new-line to avoid other messages being concatenated. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ada6b10b5b
commit
302985467f
|
@ -1021,7 +1021,7 @@ halmac_dlfw_to_mem_88xx(struct halmac_adapter *halmac_adapter, u8 *ram_code,
|
|||
if (halmac_send_fwpkt_88xx(
|
||||
halmac_adapter, code_ptr + mem_offset,
|
||||
send_pkt_size) != HALMAC_RET_SUCCESS) {
|
||||
pr_err("halmac_send_fwpkt_88xx fail!!");
|
||||
pr_err("halmac_send_fwpkt_88xx fail!!\n");
|
||||
return HALMAC_RET_DLFW_FAIL;
|
||||
}
|
||||
|
||||
|
@ -1031,7 +1031,7 @@ halmac_dlfw_to_mem_88xx(struct halmac_adapter *halmac_adapter, u8 *ram_code,
|
|||
halmac_adapter->hw_config_info.txdesc_size,
|
||||
dest + mem_offset, send_pkt_size,
|
||||
first_part) != HALMAC_RET_SUCCESS) {
|
||||
pr_err("halmac_iddma_dlfw_88xx fail!!");
|
||||
pr_err("halmac_iddma_dlfw_88xx fail!!\n");
|
||||
return HALMAC_RET_DLFW_FAIL;
|
||||
}
|
||||
|
||||
|
@ -1042,7 +1042,7 @@ halmac_dlfw_to_mem_88xx(struct halmac_adapter *halmac_adapter, u8 *ram_code,
|
|||
|
||||
if (halmac_check_fw_chksum_88xx(halmac_adapter, dest) !=
|
||||
HALMAC_RET_SUCCESS) {
|
||||
pr_err("halmac_check_fw_chksum_88xx fail!!");
|
||||
pr_err("halmac_check_fw_chksum_88xx fail!!\n");
|
||||
return HALMAC_RET_DLFW_FAIL;
|
||||
}
|
||||
|
||||
|
|
|
@ -890,7 +890,7 @@ bool rtl8822be_load_txpower_by_rate(struct ieee80211_hw *hw)
|
|||
rtstatus = rtlpriv->phydm.ops->phydm_load_txpower_by_rate(rtlpriv);
|
||||
|
||||
if (!rtstatus) {
|
||||
pr_err("BB_PG Reg Fail!!");
|
||||
pr_err("BB_PG Reg Fail!!\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -915,7 +915,7 @@ bool rtl8822be_load_txpower_limit(struct ieee80211_hw *hw)
|
|||
rtstatus = rtlpriv->phydm.ops->phydm_load_txpower_limit(rtlpriv);
|
||||
|
||||
if (!rtstatus) {
|
||||
pr_err("RF TxPwr Limit Fail!!");
|
||||
pr_err("RF TxPwr Limit Fail!!\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue