Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219698
b: refs/heads/master
c: c6eae67
h: refs/heads/master
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent 5896791 commit bad18df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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: 1e0f9ac07c044ef730375049beceeb16c7af786c
refs/heads/master: c6eae6774800a18b572ccc448ef8bff3984ecfe7
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -5610,7 +5610,7 @@ rtl819x_evm_dbtopercentage(
ret_val*=3;
if(ret_val == 99)
ret_val = 100;
return(ret_val);
return ret_val;
}

//
Expand Down Expand Up @@ -6928,7 +6928,7 @@ bool NicIFEnableNIC(struct net_device* dev)
rtl8192_irq_enable(dev);
priv->bdisable_nic = false;
//RT_TRACE(COMP_PS,"<===========%s()\n",__FUNCTION__);
return (init_status == RT_STATUS_SUCCESS) ? true:false;
return (init_status == RT_STATUS_SUCCESS);
}
bool NicIFDisableNIC(struct net_device* dev)
{
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192e/r8192_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
int rtl8192E_save_state (struct pci_dev *dev, pm_message_t state)
{
printk(KERN_NOTICE "r8192E save state call (state %u).\n", state.event);
return(-EAGAIN);
return -EAGAIN;
}


Expand Down Expand Up @@ -166,5 +166,5 @@ int rtl8192E_enable_wake (struct pci_dev *dev, pm_message_t state, int enable)
{
printk(KERN_NOTICE "r8192E enable wake call (state %u, enable %d).\n",
state.event, enable);
return(-EAGAIN);
return -EAGAIN;
}
8 changes: 4 additions & 4 deletions trunk/drivers/staging/rtl8192e/r819xE_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ u32 rtl8192_QueryBBReg(struct net_device* dev, u32 dwRegAddr, u32 dwBitMask)
BitShift = rtl8192_CalculateBitShift(dwBitMask);
Ret = (OriginalValue & dwBitMask) >> BitShift;

return (Ret);
return Ret;
}
/******************************************************************************
*function: This function read register from RF chip
Expand Down Expand Up @@ -1797,7 +1797,7 @@ u32 rtl8192_phy_QueryRFReg(struct net_device* dev, RF90_RADIO_PATH_E eRFPath, u3
Readback_Value = (Original_Value & BitMask) >> BitShift;
up(&priv->rf_sem);
// udelay(200);
return (Readback_Value);
return Readback_Value;
}

/******************************************************************************
Expand Down Expand Up @@ -1853,11 +1853,11 @@ static u32 phy_FwRFSerialRead(
udelay(10);
}
else
return (0);
return 0;
}
retValue = read_nic_dword(dev, RF_DATA);

return (retValue);
return retValue;

} /* phy_FwRFSerialRead */

Expand Down

0 comments on commit bad18df

Please sign in to comment.