Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/staging/r8188eu/hal/
Drtl8188e_hal_init.c88 u8 *efuseTbl = NULL; in efuse_phymap_to_logical() local
96 efuseTbl = kzalloc(EFUSE_MAP_LEN_88E, GFP_KERNEL); in efuse_phymap_to_logical()
97 if (!efuseTbl) in efuse_phymap_to_logical()
178 efuseTbl[(i * 8) + (j * 2)] = (eFuseWord[i][j] & 0xff); in efuse_phymap_to_logical()
179 efuseTbl[(i * 8) + ((j * 2) + 1)] = ((eFuseWord[i][j] >> 8) & 0xff); in efuse_phymap_to_logical()
186 memcpy(pbuf, efuseTbl, _size_byte); in efuse_phymap_to_logical()
189 kfree(efuseTbl); in efuse_phymap_to_logical()
396 u8 *efuseTbl = NULL; in Hal_EfuseReadEFuse88E() local
411 efuseTbl = kzalloc(EFUSE_MAP_LEN_88E, GFP_KERNEL); in Hal_EfuseReadEFuse88E()
412 if (!efuseTbl) in Hal_EfuseReadEFuse88E()
[all …]
/Linux-v6.1/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 …]