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:
Kevin Lo 2020-02-14 22:16:45 +08:00 committed by Kalle Valo
parent 2d83dddf85
commit 90a39326f1
2 changed files with 0 additions and 7 deletions

View File

@ -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;

View File

@ -1527,7 +1527,6 @@ struct rtw_hal {
u32 rcr;
u32 chip_version;
u8 fab_version;
u8 cut_version;
u8 mp_chip;
u8 oem_id;