rtw88: raise firmware version debug level
It's better to print firmware version at load time. But since we need to set debug_mask properly to default print rtw_dbg(), raise the debug level to rtw_info() instead. Also change the multiple line style to one line only, it will be easier for log analyzing. Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
bf06c7ec45
commit
bc3696e0a4
|
@ -578,10 +578,8 @@ static void update_firmware_info(struct rtw_dev *rtwdev,
|
|||
fw->sub_version = *(data + FW_HDR_SUBVERSION);
|
||||
fw->sub_index = *(data + FW_HDR_SUBINDEX);
|
||||
|
||||
rtw_dbg(rtwdev, RTW_DBG_FW, "fw h2c version: %x\n", fw->h2c_version);
|
||||
rtw_dbg(rtwdev, RTW_DBG_FW, "fw version: %x\n", fw->version);
|
||||
rtw_dbg(rtwdev, RTW_DBG_FW, "fw sub version: %x\n", fw->sub_version);
|
||||
rtw_dbg(rtwdev, RTW_DBG_FW, "fw sub index: %x\n", fw->sub_index);
|
||||
rtw_info(rtwdev, "Firmware version %u.%u.%u, H2C version %u\n",
|
||||
fw->version, fw->sub_version, fw->sub_index, fw->h2c_version);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue