Home
last modified time | relevance | path

Searched refs:efuseTbl (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/drivers/staging/r8188eu/hal/
Drtl8188e_hal_init.c70 u8 *efuseTbl = NULL; in efuse_phymap_to_logical() local
79 efuseTbl = kzalloc(EFUSE_MAP_LEN_88E, GFP_KERNEL); in efuse_phymap_to_logical()
80 if (!efuseTbl) { in efuse_phymap_to_logical()
170 efuseTbl[(i * 8) + (j * 2)] = (eFuseWord[i][j] & 0xff); in efuse_phymap_to_logical()
171 efuseTbl[(i * 8) + ((j * 2) + 1)] = ((eFuseWord[i][j] >> 8) & 0xff); in efuse_phymap_to_logical()
179 pbuf[i] = efuseTbl[_offset + i]; in efuse_phymap_to_logical()
186 kfree(efuseTbl); in efuse_phymap_to_logical()
776 u8 *efuseTbl = NULL; in Hal_EfuseReadEFuse88E() local
793 efuseTbl = kzalloc(EFUSE_MAP_LEN_88E, GFP_KERNEL); in Hal_EfuseReadEFuse88E()
794 if (!efuseTbl) { in Hal_EfuseReadEFuse88E()
[all …]
/Linux-v5.15/drivers/staging/rtl8723bs/hal/
Drtl8723b_hal_init.c730 u8 *efuseTbl = NULL; in hal_ReadEFuse_WiFi() local
743 efuseTbl = rtw_malloc(EFUSE_MAX_MAP_LEN); in hal_ReadEFuse_WiFi()
744 if (!efuseTbl) in hal_ReadEFuse_WiFi()
748 memset(efuseTbl, 0xFF, EFUSE_MAX_MAP_LEN); in hal_ReadEFuse_WiFi()
782 efuseTbl[addr] = efuseData; in hal_ReadEFuse_WiFi()
785 efuseTbl[addr+1] = efuseData; in hal_ReadEFuse_WiFi()
796 pbuf[i] = efuseTbl[_offset+i]; in hal_ReadEFuse_WiFi()
813 kfree(efuseTbl); in hal_ReadEFuse_WiFi()
828 u8 *efuseTbl; in hal_ReadEFuse_BT() local
843 efuseTbl = rtw_malloc(EFUSE_BT_MAP_LEN); in hal_ReadEFuse_BT()
[all …]