mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-27 16:31:34 +07:00
rtw88: remove unused member of struct rtw_hal
Remove unused fab_version member from struct rtw_hal. Some of the checks being made were nonsense. Signed-off-by: Kevin Lo <kevlo@kevlo.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
2d83dddf85
commit
90a39326f1
@ -1118,7 +1118,6 @@ static int rtw_chip_parameter_setup(struct rtw_dev *rtwdev)
|
||||
}
|
||||
|
||||
hal->chip_version = rtw_read32(rtwdev, REG_SYS_CFG1);
|
||||
hal->fab_version = BIT_GET_VENDOR_ID(hal->chip_version) >> 2;
|
||||
hal->cut_version = BIT_GET_CHIP_VER(hal->chip_version);
|
||||
hal->mp_chip = (hal->chip_version & BIT_RTL_ID) ? 0 : 1;
|
||||
if (hal->chip_version & BIT_RF_TYPE_ID) {
|
||||
@ -1133,11 +1132,6 @@ static int rtw_chip_parameter_setup(struct rtw_dev *rtwdev)
|
||||
hal->antenna_rx = BB_PATH_A;
|
||||
}
|
||||
|
||||
if (hal->fab_version == 2)
|
||||
hal->fab_version = 1;
|
||||
else if (hal->fab_version == 1)
|
||||
hal->fab_version = 2;
|
||||
|
||||
efuse->physical_size = chip->phy_efuse_size;
|
||||
efuse->logical_size = chip->log_efuse_size;
|
||||
efuse->protect_size = chip->ptct_efuse_size;
|
||||
|
@ -1527,7 +1527,6 @@ struct rtw_hal {
|
||||
u32 rcr;
|
||||
|
||||
u32 chip_version;
|
||||
u8 fab_version;
|
||||
u8 cut_version;
|
||||
u8 mp_chip;
|
||||
u8 oem_id;
|
||||
|
Loading…
Reference in New Issue
Block a user