Commit 6aeaa379 authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo

wifi: rtw89: mac: Fix spelling mistakes "notfify" -> "notify"

There are two spelling mistakes in rtw89_err error messages. Fix these
and also add space between [ERR] and message text.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Acked-by: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
Link: https://msgid.link/20231220141831.10063-1-colin.i.king@gmail.com
parent 6bd23219
...@@ -1616,7 +1616,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable) ...@@ -1616,7 +1616,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable)
if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) { if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) {
ret = rtw89_fw_h2c_notify_dbcc(rtwdev, true); ret = rtw89_fw_h2c_notify_dbcc(rtwdev, true);
if (ret) { if (ret) {
rtw89_err(rtwdev, "%s:[ERR]notfify dbcc1 fail %d\n", rtw89_err(rtwdev, "%s:[ERR] notify dbcc1 fail %d\n",
__func__, ret); __func__, ret);
return ret; return ret;
} }
...@@ -1625,7 +1625,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable) ...@@ -1625,7 +1625,7 @@ static int dbcc_enable_be(struct rtw89_dev *rtwdev, bool enable)
if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) { if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) {
ret = rtw89_fw_h2c_notify_dbcc(rtwdev, false); ret = rtw89_fw_h2c_notify_dbcc(rtwdev, false);
if (ret) { if (ret) {
rtw89_err(rtwdev, "%s:[ERR]notfify dbcc1 fail %d\n", rtw89_err(rtwdev, "%s:[ERR] notify dbcc1 fail %d\n",
__func__, ret); __func__, ret);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment