Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219798
b: refs/heads/master
c: 49e57f2
h: refs/heads/master
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Sep 9, 2010
1 parent 488c9bc commit a947637
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f8942e07a3db9d82e8fb11d3d494876b8bae9ff9
refs/heads/master: 49e57f2fc0bc4ab2b83c7446ad3a43b3262f1d7a
16 changes: 4 additions & 12 deletions trunk/drivers/staging/rtl8192e/r819xE_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1489,13 +1489,11 @@ void rtl8192_setBBreg(struct net_device* dev, u32 dwRegAddr, u32 dwBitMask, u32
* ****************************************************************************/
u32 rtl8192_QueryBBReg(struct net_device* dev, u32 dwRegAddr, u32 dwBitMask)
{
u32 Ret = 0, OriginalValue, BitShift;
u32 OriginalValue, BitShift;

OriginalValue = read_nic_dword(dev, dwRegAddr);
BitShift = rtl8192_CalculateBitShift(dwBitMask);
Ret = (OriginalValue & dwBitMask) >> BitShift;

return Ret;
return (OriginalValue & dwBitMask) >> BitShift;
}
/******************************************************************************
*function: This function read register from RF chip
Expand Down Expand Up @@ -1812,7 +1810,6 @@ static u32 phy_FwRFSerialRead(
RF90_RADIO_PATH_E eRFPath,
u32 Offset )
{
u32 retValue = 0;
u32 Data = 0;
u8 time = 0;
//DbgPrint("FW RF CTRL\n\r");
Expand Down Expand Up @@ -1855,10 +1852,7 @@ static u32 phy_FwRFSerialRead(
else
return 0;
}
retValue = read_nic_dword(dev, RF_DATA);

return retValue;

return read_nic_dword(dev, RF_DATA);
} /* phy_FwRFSerialRead */

/******************************************************************************
Expand Down Expand Up @@ -2315,12 +2309,10 @@ static RT_STATUS rtl8192_BB_Config_ParaFile(struct net_device* dev)
* ***************************************************************************/
RT_STATUS rtl8192_BBConfig(struct net_device* dev)
{
RT_STATUS rtStatus = RT_STATUS_SUCCESS;
rtl8192_InitBBRFRegDef(dev);
//config BB&RF. As hardCode based initialization has not been well
//implemented, so use file first.FIXME:should implement it for hardcode?
rtStatus = rtl8192_BB_Config_ParaFile(dev);
return rtStatus;
return rtl8192_BB_Config_ParaFile(dev);
}

/******************************************************************************
Expand Down

0 comments on commit a947637

Please sign in to comment.