wifi: rtw89: mac: Fix spelling mistakes "notfify" -> "notify"
authorColin Ian King <colin.i.king@gmail.com>
Wed, 20 Dec 2023 14:18:31 +0000 (14:18 +0000)
committerKalle Valo <kvalo@kernel.org>
Wed, 10 Jan 2024 14:51:48 +0000 (16:51 +0200)
There are two spelling mistakes in rtw89_err error messages. Fix these
and also add space between [ERR] and message text.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://msgid.link/20231220141831.10063-1-colin.i.king@gmail.com
drivers/net/wireless/realtek/rtw89/mac_be.c

index be30c9346293b8dade24aaf42c33548578130512..4befbe06cd15727516e19ca3c6e4a5e55467d927 100644 (file)
@@ -1616,7 +1616,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable)
                if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) {
                        ret = rtw89_fw_h2c_notify_dbcc(rtwdev, true);
                        if (ret) {
-                               rtw89_err(rtwdev, "%s:[ERR]notfify dbcc1 fail %d\n",
+                               rtw89_err(rtwdev, "%s:[ERR] notify dbcc1 fail %d\n",
                                          __func__, ret);
                                return ret;
                        }
@@ -1625,7 +1625,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable)
                if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) {
                        ret = rtw89_fw_h2c_notify_dbcc(rtwdev, false);
                        if (ret) {
-                               rtw89_err(rtwdev, "%s:[ERR]notfify dbcc1 fail %d\n",
+                               rtw89_err(rtwdev, "%s:[ERR] notify dbcc1 fail %d\n",
                                          __func__, ret);
                                return ret;
                        }