staging: rtl8192u: fix spaces around '=' in r819xU_phy.c

This patch fixes the whitespace around the assignment
operator to meet linux kernel coding style.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Xenia Ragiadakou 2013-06-18 05:29:36 +03:00 committed by Greg Kroah-Hartman
parent 000d73fc3b
commit ec5d319bbf

View File

@ -111,7 +111,7 @@ u32 rtl8192_QueryBBReg(struct net_device *dev, u32 dwRegAddr, u32 dwBitMask)
read_nic_dword(dev, dwRegAddr, &OriginalValue); read_nic_dword(dev, dwRegAddr, &OriginalValue);
BitShift = rtl8192_CalculateBitShift(dwBitMask); BitShift = rtl8192_CalculateBitShift(dwBitMask);
Ret =(OriginalValue & dwBitMask) >> BitShift; Ret = (OriginalValue & dwBitMask) >> BitShift;
return Ret; return Ret;
} }
@ -470,7 +470,7 @@ void rtl8192_phy_configmac(struct net_device *dev)
dwArrayLen = MACPHY_ArrayLength; dwArrayLen = MACPHY_ArrayLength;
pdwArray = rtl819XMACPHY_Array; pdwArray = rtl819XMACPHY_Array;
} }
for (i = 0; i<dwArrayLen; i=i+3) { for (i = 0; i<dwArrayLen; i = i+3) {
if (pdwArray[i] == 0x318) { if (pdwArray[i] == 0x318) {
pdwArray[i+2] = 0x00000800; pdwArray[i+2] = 0x00000800;
} }
@ -506,12 +506,12 @@ void rtl8192_phyConfigBB(struct net_device *dev, u8 ConfigType)
} }
#endif #endif
if (ConfigType == BaseBand_Config_PHY_REG) { if (ConfigType == BaseBand_Config_PHY_REG) {
for (i=0; i<PHY_REG_1T2RArrayLength; i+=2) { for (i = 0; i<PHY_REG_1T2RArrayLength; i += 2) {
rtl8192_setBBreg(dev, rtl819XPHY_REG_1T2RArray[i], bMaskDWord, rtl819XPHY_REG_1T2RArray[i+1]); rtl8192_setBBreg(dev, rtl819XPHY_REG_1T2RArray[i], bMaskDWord, rtl819XPHY_REG_1T2RArray[i+1]);
RT_TRACE(COMP_DBG, "i: %x, The Rtl819xUsbPHY_REGArray[0] is %x Rtl819xUsbPHY_REGArray[1] is %x \n",i, rtl819XPHY_REG_1T2RArray[i], rtl819XPHY_REG_1T2RArray[i+1]); RT_TRACE(COMP_DBG, "i: %x, The Rtl819xUsbPHY_REGArray[0] is %x Rtl819xUsbPHY_REGArray[1] is %x \n",i, rtl819XPHY_REG_1T2RArray[i], rtl819XPHY_REG_1T2RArray[i+1]);
} }
} else if (ConfigType == BaseBand_Config_AGC_TAB) { } else if (ConfigType == BaseBand_Config_AGC_TAB) {
for (i=0; i<AGCTAB_ArrayLength; i+=2) { for (i = 0; i<AGCTAB_ArrayLength; i += 2) {
rtl8192_setBBreg(dev, rtl819XAGCTAB_Array[i], bMaskDWord, rtl819XAGCTAB_Array[i+1]); rtl8192_setBBreg(dev, rtl819XAGCTAB_Array[i], bMaskDWord, rtl819XAGCTAB_Array[i+1]);
RT_TRACE(COMP_DBG, "i:%x, The rtl819XAGCTAB_Array[0] is %x rtl819XAGCTAB_Array[1] is %x \n",i, rtl819XAGCTAB_Array[i], rtl819XAGCTAB_Array[i+1]); RT_TRACE(COMP_DBG, "i:%x, The rtl819XAGCTAB_Array[0] is %x rtl819XAGCTAB_Array[1] is %x \n",i, rtl819XAGCTAB_Array[i], rtl819XAGCTAB_Array[i+1]);
} }
@ -656,7 +656,7 @@ u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, HW90_BLOCK_E CheckBlock,
WriteAddr[HW90_BLOCK_PHY1] = 0x800; WriteAddr[HW90_BLOCK_PHY1] = 0x800;
WriteAddr[HW90_BLOCK_RF] = 0x3; WriteAddr[HW90_BLOCK_RF] = 0x3;
RT_TRACE(COMP_PHY, "=======>%s(), CheckBlock:%d\n", __FUNCTION__, CheckBlock); RT_TRACE(COMP_PHY, "=======>%s(), CheckBlock:%d\n", __FUNCTION__, CheckBlock);
for (i=0 ; i < CheckTimes ; i++) { for (i = 0 ; i < CheckTimes ; i++) {
// //
// Write Data to register and readback // Write Data to register and readback
@ -728,7 +728,7 @@ void rtl8192_BB_Config_ParaFile(struct net_device *dev)
/*----Ckeck FPGAPHY0 and PHY1 board is OK----*/ /*----Ckeck FPGAPHY0 and PHY1 board is OK----*/
// TODO: this function should be removed on ASIC , Emily 2007.2.2 // TODO: this function should be removed on ASIC , Emily 2007.2.2
for (eCheckItem=(HW90_BLOCK_E)HW90_BLOCK_PHY0; eCheckItem<=HW90_BLOCK_PHY1; eCheckItem++) { for (eCheckItem = (HW90_BLOCK_E)HW90_BLOCK_PHY0; eCheckItem<=HW90_BLOCK_PHY1; eCheckItem++) {
rtStatus = rtl8192_phy_checkBBAndRF(dev, (HW90_BLOCK_E)eCheckItem, (RF90_RADIO_PATH_E)0); //don't care RF path rtStatus = rtl8192_phy_checkBBAndRF(dev, (HW90_BLOCK_E)eCheckItem, (RF90_RADIO_PATH_E)0); //don't care RF path
if (rtStatus != 0) { if (rtStatus != 0) {
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);
@ -894,7 +894,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
switch (eRFPath) { switch (eRFPath) {
case RF90_PATH_A: case RF90_PATH_A:
for (i = 0;i<RadioA_ArrayLength; i=i+2) { for (i = 0;i<RadioA_ArrayLength; i = i+2) {
if (rtl819XRadioA_Array[i] == 0xfe) { if (rtl819XRadioA_Array[i] == 0xfe) {
mdelay(100); mdelay(100);
@ -906,7 +906,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
} }
break; break;
case RF90_PATH_B: case RF90_PATH_B:
for (i = 0;i<RadioB_ArrayLength; i=i+2) { for (i = 0;i<RadioB_ArrayLength; i = i+2) {
if (rtl819XRadioB_Array[i] == 0xfe) { if (rtl819XRadioB_Array[i] == 0xfe) {
mdelay(100); mdelay(100);
@ -918,7 +918,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
} }
break; break;
case RF90_PATH_C: case RF90_PATH_C:
for (i = 0;i<RadioC_ArrayLength; i=i+2) { for (i = 0;i<RadioC_ArrayLength; i = i+2) {
if (rtl819XRadioC_Array[i] == 0xfe) { if (rtl819XRadioC_Array[i] == 0xfe) {
mdelay(100); mdelay(100);
@ -930,7 +930,7 @@ u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
} }
break; break;
case RF90_PATH_D: case RF90_PATH_D:
for (i = 0;i<RadioD_ArrayLength; i=i+2) { for (i = 0;i<RadioD_ArrayLength; i = i+2) {
if (rtl819XRadioD_Array[i] == 0xfe) { if (rtl819XRadioD_Array[i] == 0xfe) {
mdelay(100); mdelay(100);
@ -1224,23 +1224,23 @@ u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel, u8 *stage,
do { do {
switch (*stage) { switch (*stage) {
case 0: case 0:
CurrentCmd=&PreCommonCmd[*step]; CurrentCmd = &PreCommonCmd[*step];
break; break;
case 1: case 1:
CurrentCmd=&RfDependCmd[*step]; CurrentCmd = &RfDependCmd[*step];
break; break;
case 2: case 2:
CurrentCmd=&PostCommonCmd[*step]; CurrentCmd = &PostCommonCmd[*step];
break; break;
} }
if (CurrentCmd->CmdID==CmdID_End) { if (CurrentCmd->CmdID==CmdID_End) {
if ((*stage)==2) { if ((*stage)==2) {
(*delay)=CurrentCmd->msDelay; (*delay) = CurrentCmd->msDelay;
return true; return true;
} else { } else {
(*stage)++; (*stage)++;
(*step)=0; (*step) = 0;
continue; continue;
} }
} }
@ -1271,7 +1271,7 @@ u8 rtl8192_phy_SwChnlStepByStep(struct net_device *dev, u8 channel, u8 *stage,
break; break;
} while (true); } while (true);
(*delay)=CurrentCmd->msDelay; (*delay) = CurrentCmd->msDelay;
(*step)++; (*step)++;
return false; return false;
} }
@ -1360,10 +1360,10 @@ u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel)
if (channel == 0) if (channel == 0)
channel = 1; channel = 1;
priv->chan=channel; priv->chan = channel;
priv->SwChnlStage=0; priv->SwChnlStage = 0;
priv->SwChnlStep=0; priv->SwChnlStep = 0;
if (priv->up) if (priv->up)
rtl8192_SwChnl_WorkItem(dev); rtl8192_SwChnl_WorkItem(dev);
@ -1394,7 +1394,7 @@ void rtl8192_SetBWModeWorkItem(struct net_device *dev)
if (priv->rf_chip == RF_PSEUDO_11N) { if (priv->rf_chip == RF_PSEUDO_11N) {
priv->SetBWModeInProgress= false; priv->SetBWModeInProgress = false;
return; return;
} }
@ -1432,7 +1432,7 @@ void rtl8192_SetBWModeWorkItem(struct net_device *dev)
priv->cck_present_attentuation_20Mdefault + priv->cck_present_attentuation_difference; priv->cck_present_attentuation_20Mdefault + priv->cck_present_attentuation_difference;
if (priv->cck_present_attentuation > 22) if (priv->cck_present_attentuation > 22)
priv->cck_present_attentuation= 22; priv->cck_present_attentuation = 22;
if (priv->cck_present_attentuation< 0) if (priv->cck_present_attentuation< 0)
priv->cck_present_attentuation = 0; priv->cck_present_attentuation = 0;
RT_TRACE(COMP_INIT, "20M, pHalData->CCKPresentAttentuation = %d\n", priv->cck_present_attentuation); RT_TRACE(COMP_INIT, "20M, pHalData->CCKPresentAttentuation = %d\n", priv->cck_present_attentuation);
@ -1506,7 +1506,7 @@ void rtl8192_SetBWModeWorkItem(struct net_device *dev)
RT_TRACE(COMP_ERR, "Unknown RFChipID: %d\n", priv->rf_chip); RT_TRACE(COMP_ERR, "Unknown RFChipID: %d\n", priv->rf_chip);
break; break;
} }
priv->SetBWModeInProgress= false; priv->SetBWModeInProgress = false;
RT_TRACE(COMP_SWBW, "<==SetBWMode819xUsb(), %d", atomic_read(&(priv->ieee80211->atm_swbw))); RT_TRACE(COMP_SWBW, "<==SetBWMode819xUsb(), %d", atomic_read(&(priv->ieee80211->atm_swbw)));
} }
@ -1528,7 +1528,7 @@ void rtl8192_SetBWMode(struct net_device *dev, HT_CHANNEL_WIDTH Bandwidth,
if (priv->SetBWModeInProgress) if (priv->SetBWModeInProgress)
return; return;
priv->SetBWModeInProgress= true; priv->SetBWModeInProgress = true;
priv->CurrentChannelBW = Bandwidth; priv->CurrentChannelBW = Bandwidth;