staging: rtl8188eu: Rename rtl8188e_EfusePowerSwitch() to Efuse_PowerSwitch()
Rename rtl8188e_EfusePowerSwitch() to Efuse_PowerSwitch() and remove original Efuse_PowerSwitch() function, so that driver can call rtl8188e_EfusePowerSwitch() directly without going through Efuse_PowerSwitch(). Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
585688c957
commit
f98440f48b
@ -76,33 +76,6 @@ Efuse_Write1ByteToFakeContent(
|
||||
return true;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------------
|
||||
* Function: Efuse_PowerSwitch
|
||||
*
|
||||
* Overview: When we want to enable write operation, we should change to
|
||||
* pwr on state. When we stop write, we should switch to 500k mode
|
||||
* and disable LDO 2.5V.
|
||||
*
|
||||
* Input: NONE
|
||||
*
|
||||
* Output: NONE
|
||||
*
|
||||
* Return: NONE
|
||||
*
|
||||
* Revised History:
|
||||
* When Who Remark
|
||||
* 11/17/2008 MHC Create Version 0.
|
||||
*
|
||||
*---------------------------------------------------------------------------*/
|
||||
void
|
||||
Efuse_PowerSwitch(
|
||||
struct adapter *pAdapter,
|
||||
u8 write,
|
||||
u8 PwrState)
|
||||
{
|
||||
pAdapter->HalFunc.EfusePowerSwitch(pAdapter, write, PwrState);
|
||||
}
|
||||
|
||||
/* 11/16/2008 MH Add description. Get current efuse area enabled word!!. */
|
||||
u8
|
||||
Efuse_CalculateWordCnts(u8 word_en)
|
||||
|
@ -750,8 +750,15 @@ hal_EfusePgPacketWriteData(
|
||||
struct pgpkt *pTargetPkt,
|
||||
bool bPseudoTest);
|
||||
|
||||
static void
|
||||
rtl8188e_EfusePowerSwitch(
|
||||
/*
|
||||
* Function: Efuse_PowerSwitch
|
||||
*
|
||||
* Overview: When we want to enable write operation, we should change to
|
||||
* pwr on state. When we stop write, we should switch to 500k mode
|
||||
* and disable LDO 2.5V.
|
||||
*/
|
||||
|
||||
void Efuse_PowerSwitch(
|
||||
struct adapter *pAdapter,
|
||||
u8 bWrite,
|
||||
u8 PwrState)
|
||||
@ -1671,7 +1678,6 @@ void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
|
||||
pHalFunc->write_rfreg = &rtl8188e_PHY_SetRFReg;
|
||||
|
||||
/* Efuse related function */
|
||||
pHalFunc->EfusePowerSwitch = &rtl8188e_EfusePowerSwitch;
|
||||
pHalFunc->ReadEFuse = &ReadEFuseByIC;
|
||||
pHalFunc->Efuse_PgPacketRead = &hal_EfusePgPacketRead_8188e;
|
||||
pHalFunc->Efuse_PgPacketWrite = &hal_EfusePgPacketWrite_8188e;
|
||||
|
@ -233,8 +233,6 @@ struct hal_ops {
|
||||
enum rf_radio_path eRFPath, u32 RegAddr,
|
||||
u32 BitMask, u32 Data);
|
||||
|
||||
void (*EfusePowerSwitch)(struct adapter *padapter, u8 bWrite,
|
||||
u8 PwrState);
|
||||
void (*ReadEFuse)(struct adapter *padapter, u8 efuseType, u16 _offset,
|
||||
u16 _size_byte, u8 *pbuf, bool bPseudoTest);
|
||||
int (*Efuse_PgPacketRead)(struct adapter *adapter, u8 offset,
|
||||
|
Loading…
x
Reference in New Issue
Block a user