]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: rtlwifi: pr_err() strings should end with newlines
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Tue, 3 Oct 2017 11:43:26 +0000 (17:13 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Oct 2017 16:36:25 +0000 (18:36 +0200)
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>
drivers/staging/rtlwifi/halmac/halmac_88xx/halmac_func_88xx.c
drivers/staging/rtlwifi/rtl8822be/phy.c

index 29dd9cf28db77d7e3690de25d60aec33815de136..c4a8eb4c82bbb6be9974bc3cefe66e303e835cfe 100644 (file)
@@ -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;
        }
 
index 4cba2adc3165fa4c3f10051154b98c36fd80b608..921226bd687bf757236f3cad33eff7eff798cab4 100644 (file)
@@ -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;
        }