staging: rtl8192e: Convert typedef HW90_BLOCK_E to enum hw90_block
Remove typedef from enum. Rename enum. Rename uses. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
@@ -510,7 +510,7 @@ void rtl8192_InitBBRFRegDef(struct net_device* dev)
|
|||||||
priv->PHYRegDef[RF90_PATH_D].rfLSSIReadBack = rFPGA0_XD_LSSIReadBack;
|
priv->PHYRegDef[RF90_PATH_D].rfLSSIReadBack = rFPGA0_XD_LSSIReadBack;
|
||||||
|
|
||||||
}
|
}
|
||||||
bool rtl8192_phy_checkBBAndRF(struct net_device* dev, HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath)
|
bool rtl8192_phy_checkBBAndRF(struct net_device* dev, enum hw90_block CheckBlock, RF90_RADIO_PATH_E eRFPath)
|
||||||
{
|
{
|
||||||
bool ret = true;
|
bool ret = true;
|
||||||
u32 i, CheckTimes = 4, dwRegRead = 0;
|
u32 i, CheckTimes = 4, dwRegRead = 0;
|
||||||
@@ -576,9 +576,9 @@ bool rtl8192_BB_Config_ParaFile(struct net_device* dev)
|
|||||||
dwRegValue = read_nic_dword(dev, CPU_GEN);
|
dwRegValue = read_nic_dword(dev, CPU_GEN);
|
||||||
write_nic_dword(dev, CPU_GEN, (dwRegValue&(~CPU_GEN_BB_RST)));
|
write_nic_dword(dev, CPU_GEN, (dwRegValue&(~CPU_GEN_BB_RST)));
|
||||||
|
|
||||||
for (eCheckItem=(HW90_BLOCK_E)HW90_BLOCK_PHY0; eCheckItem<=HW90_BLOCK_PHY1; eCheckItem++)
|
for (eCheckItem=(enum hw90_block)HW90_BLOCK_PHY0; eCheckItem<=HW90_BLOCK_PHY1; eCheckItem++)
|
||||||
{
|
{
|
||||||
rtStatus = rtl8192_phy_checkBBAndRF(dev, (HW90_BLOCK_E)eCheckItem, (RF90_RADIO_PATH_E)0);
|
rtStatus = rtl8192_phy_checkBBAndRF(dev, (enum hw90_block)eCheckItem, (RF90_RADIO_PATH_E)0);
|
||||||
if (rtStatus != true)
|
if (rtStatus != true)
|
||||||
{
|
{
|
||||||
RT_TRACE((COMP_ERR | COMP_PHY), "PHY_RF8256_Config():Check PHY%d Fail!!\n", eCheckItem-1);
|
RT_TRACE((COMP_ERR | COMP_PHY), "PHY_RF8256_Config():Check PHY%d Fail!!\n", eCheckItem-1);
|
||||||
|
@@ -73,13 +73,13 @@ extern u32 rtl819XRadioB_Array[];
|
|||||||
extern u32 rtl819XRadioC_Array[];
|
extern u32 rtl819XRadioC_Array[];
|
||||||
extern u32 rtl819XRadioD_Array[];
|
extern u32 rtl819XRadioD_Array[];
|
||||||
|
|
||||||
typedef enum _HW90_BLOCK_E {
|
enum hw90_block {
|
||||||
HW90_BLOCK_MAC = 0,
|
HW90_BLOCK_MAC = 0,
|
||||||
HW90_BLOCK_PHY0 = 1,
|
HW90_BLOCK_PHY0 = 1,
|
||||||
HW90_BLOCK_PHY1 = 2,
|
HW90_BLOCK_PHY1 = 2,
|
||||||
HW90_BLOCK_RF = 3,
|
HW90_BLOCK_RF = 3,
|
||||||
HW90_BLOCK_MAXIMUM = 4,
|
HW90_BLOCK_MAXIMUM = 4,
|
||||||
} HW90_BLOCK_E, *PHW90_BLOCK_E;
|
};
|
||||||
|
|
||||||
typedef enum _RF90_RADIO_PATH_E{
|
typedef enum _RF90_RADIO_PATH_E{
|
||||||
RF90_PATH_A = 0,
|
RF90_PATH_A = 0,
|
||||||
@@ -104,7 +104,7 @@ extern void rtl8192_phy_SetRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPa
|
|||||||
extern u32 rtl8192_phy_QueryRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 RegAddr, u32 BitMask);
|
extern u32 rtl8192_phy_QueryRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u32 RegAddr, u32 BitMask);
|
||||||
extern void rtl8192_phy_configmac(struct net_device* dev);
|
extern void rtl8192_phy_configmac(struct net_device* dev);
|
||||||
extern void rtl8192_phyConfigBB(struct net_device* dev, u8 ConfigType);
|
extern void rtl8192_phyConfigBB(struct net_device* dev, u8 ConfigType);
|
||||||
extern bool rtl8192_phy_checkBBAndRF(struct net_device* dev, HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath);
|
extern bool rtl8192_phy_checkBBAndRF(struct net_device* dev, enum hw90_block CheckBlock, RF90_RADIO_PATH_E eRFPath);
|
||||||
extern bool rtl8192_BBConfig(struct net_device* dev);
|
extern bool rtl8192_BBConfig(struct net_device* dev);
|
||||||
extern void rtl8192_phy_getTxPower(struct net_device* dev);
|
extern void rtl8192_phy_getTxPower(struct net_device* dev);
|
||||||
extern void rtl8192_phy_setTxPower(struct net_device* dev, u8 channel);
|
extern void rtl8192_phy_setTxPower(struct net_device* dev, u8 channel);
|
||||||
|
Reference in New Issue
Block a user