wifi: rtw89: fw: correct debug message format in rtw89_build_txpwr_trk_tbl_from_elm()

The format should be "%08x". Fix the mistakes.

Fixes: d60e73e5dd ("wifi: rtw89: fw: load TX power track tables from fw_element")
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20250227131228.8457-4-pkshih@realtek.com
This commit is contained in:
Ping-Ke Shih 2025-02-27 21:12:27 +08:00
parent b521af1dcd
commit 88b46320fc

View File

@ -1099,7 +1099,7 @@ int rtw89_build_txpwr_trk_tbl_from_elm(struct rtw89_dev *rtwdev,
bitmap = le32_to_cpu(elm->u.txpwr_trk.bitmap);
if ((bitmap & needed_bitmap) != needed_bitmap) {
rtw89_warn(rtwdev, "needed txpwr trk bitmap %08x but %0x8x\n",
rtw89_warn(rtwdev, "needed txpwr trk bitmap %08x but %08x\n",
needed_bitmap, bitmap);
return -ENOENT;
}