staging: rtl8188eu: Remove rtl8188e_ReadEFuse()
rtl8188e_ReadEFuse() checks bool bPseudoTest and then calls suitable function to read Fuse, ReadEFuseByIC() also does same thing. So use ReadEFuseByIC() and drop rtl8188e_ReadEFuse(). Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
16489350a5
commit
559803f98a
@ -961,16 +961,6 @@ static void ReadEFuse_Pseudo(struct adapter *Adapter, u8 efuseType, u16 _offset,
|
||||
Hal_EfuseReadEFuse88E(Adapter, _offset, _size_byte, pbuf, bPseudoTest);
|
||||
}
|
||||
|
||||
static void rtl8188e_ReadEFuse(struct adapter *Adapter, u8 efuseType,
|
||||
u16 _offset, u16 _size_byte, u8 *pbuf,
|
||||
bool bPseudoTest)
|
||||
{
|
||||
if (bPseudoTest)
|
||||
ReadEFuse_Pseudo (Adapter, efuseType, _offset, _size_byte, pbuf, bPseudoTest);
|
||||
else
|
||||
ReadEFuseByIC(Adapter, efuseType, _offset, _size_byte, pbuf, bPseudoTest);
|
||||
}
|
||||
|
||||
/* Do not support BT */
|
||||
static void Hal_EFUSEGetEfuseDefinition88E(struct adapter *pAdapter, u8 efuseType, u8 type, void *pOut)
|
||||
{
|
||||
@ -1849,7 +1839,7 @@ void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
|
||||
/* Efuse related function */
|
||||
pHalFunc->EfusePowerSwitch = &rtl8188e_EfusePowerSwitch;
|
||||
pHalFunc->ReadEFuse = &rtl8188e_ReadEFuse;
|
||||
pHalFunc->ReadEFuse = &ReadEFuseByIC;
|
||||
pHalFunc->EFUSEGetEfuseDefinition = &rtl8188e_EFUSE_GetEfuseDefinition;
|
||||
pHalFunc->EfuseGetCurrentSize = &rtl8188e_EfuseGetCurrentSize;
|
||||
pHalFunc->Efuse_PgPacketRead = &rtl8188e_Efuse_PgPacketRead;
|
||||
|
Loading…
x
Reference in New Issue
Block a user