Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/rtl8723au/hal/
Drtl8723a_hal_init.c386 u8 *efuseTbl = NULL; in hal_ReadEFuse_WiFi() local
401 efuseTbl = kmalloc(EFUSE_MAP_LEN_8723A, GFP_KERNEL); in hal_ReadEFuse_WiFi()
402 if (efuseTbl == NULL) { in hal_ReadEFuse_WiFi()
407 memset(efuseTbl, 0xFF, EFUSE_MAP_LEN_8723A); in hal_ReadEFuse_WiFi()
445 efuseTbl[addr] = efuseData; in hal_ReadEFuse_WiFi()
449 efuseTbl[addr + 1] = efuseData; in hal_ReadEFuse_WiFi()
462 pbuf[i] = efuseTbl[_offset + i]; in hal_ReadEFuse_WiFi()
470 kfree(efuseTbl); in hal_ReadEFuse_WiFi()
477 u8 *efuseTbl; in hal_ReadEFuse_BT() local
493 efuseTbl = kmalloc(EFUSE_BT_MAP_LEN, GFP_KERNEL); in hal_ReadEFuse_BT()
[all …]
/linux-4.1.27/drivers/staging/rtl8188eu/core/
Drtw_efuse.c97 u8 *efuseTbl = NULL; in efuse_phymap_to_logical() local
106 efuseTbl = kzalloc(EFUSE_MAP_LEN_88E, GFP_KERNEL); in efuse_phymap_to_logical()
107 if (efuseTbl == NULL) { in efuse_phymap_to_logical()
197 efuseTbl[(i*8)+(j*2)] = (eFuseWord[i][j] & 0xff); in efuse_phymap_to_logical()
198 efuseTbl[(i*8)+((j*2)+1)] = ((eFuseWord[i][j] >> 8) & 0xff); in efuse_phymap_to_logical()
206 pbuf[i] = efuseTbl[_offset+i]; in efuse_phymap_to_logical()
216 kfree(efuseTbl); in efuse_phymap_to_logical()