mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
staging: rtl8723bs: remove dump_chip_info() function
The dump_chip_info() function formats chip version information into a
local 128-byte buffer using the scnprintf(). This buffer was previously
passed to the DBG_871X macro.
Commit 968b15adb0 ("staging: rtl8723bs: remove all DBG_871X logs")
removed the macro, leaving the buffer formatted but never used or output
anywhere.
dump_chip_info() is now useless, so remove it and its call from
ReadChipVersion8723B().
Signed-off-by: Nikolay Kulikov <nikolayof23@gmail.com>
Reviewed-by: Luka Gejak <luka.gejak@linux.dev>
Link: https://patch.msgid.link/20260421051551.1694-1-nikolayof23@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f051bc718b
commit
5802af57b2
|
|
@ -30,48 +30,6 @@ void rtw_hal_data_deinit(struct adapter *padapter)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
void dump_chip_info(struct hal_version chip_version)
|
||||
{
|
||||
char buf[128];
|
||||
size_t cnt = 0;
|
||||
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "Chip Version Info: CHIP_8723B_%s_",
|
||||
IS_NORMAL_CHIP(chip_version) ? "Normal_Chip" : "Test_Chip");
|
||||
|
||||
if (IS_CHIP_VENDOR_TSMC(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "TSMC_");
|
||||
else if (IS_CHIP_VENDOR_UMC(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "UMC_");
|
||||
else if (IS_CHIP_VENDOR_SMIC(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "SMIC_");
|
||||
|
||||
if (IS_A_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "A_CUT_");
|
||||
else if (IS_B_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "B_CUT_");
|
||||
else if (IS_C_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "C_CUT_");
|
||||
else if (IS_D_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "D_CUT_");
|
||||
else if (IS_E_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "E_CUT_");
|
||||
else if (IS_I_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "I_CUT_");
|
||||
else if (IS_J_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "J_CUT_");
|
||||
else if (IS_K_CUT(chip_version))
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "K_CUT_");
|
||||
else
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt,
|
||||
"UNKNOWN_CUT(%d)_", chip_version.CUTVersion);
|
||||
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "1T1R_");
|
||||
|
||||
cnt += scnprintf(buf + cnt, sizeof(buf) - cnt, "RomVer(%d)\n", chip_version.ROMVer);
|
||||
}
|
||||
|
||||
|
||||
#define EEPROM_CHANNEL_PLAN_BY_HW_MASK 0x80
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -856,8 +856,6 @@ static struct hal_version ReadChipVersion8723B(struct adapter *padapter)
|
|||
pHalData->MultiFunc |= ((value32 & GPS_FUNC_EN) ? RT_MULTI_FUNC_GPS : 0);
|
||||
pHalData->PolarityCtl = ((value32 & WL_HWPDN_SL) ? RT_POLARITY_HIGH_ACT : RT_POLARITY_LOW_ACT);
|
||||
|
||||
dump_chip_info(ChipVersion);
|
||||
|
||||
pHalData->VersionID = ChipVersion;
|
||||
|
||||
return ChipVersion;
|
||||
|
|
|
|||
|
|
@ -92,8 +92,6 @@ enum rt_media_status {
|
|||
u8 rtw_hal_data_init(struct adapter *padapter);
|
||||
void rtw_hal_data_deinit(struct adapter *padapter);
|
||||
|
||||
void dump_chip_info(struct hal_version ChipVersion);
|
||||
|
||||
u8 /* return the final channel plan decision */
|
||||
hal_com_config_channel_plan(
|
||||
struct adapter *padapter,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user