diff options
| author | Xenia Ragiadakou <burzalodowa@gmail.com> | 2013-06-24 19:29:01 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-24 19:44:59 -0400 |
| commit | 59f30ae02cc0d0eaf4e1186734c4b80c06d77eeb (patch) | |
| tree | 3eed45f0fe9e3eee6ed6a78efabea7c6d2e73e18 | |
| parent | a029ccae0ac349a5f56c9a8fc9dd229679449c6f (diff) | |
staging: rtl8192u: fix line length in r819xU_phy.h
This patch fixes the following checkpatch warning:
WARNING: line over 80 characters
Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rtl8192u/r819xU_phy.h | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/drivers/staging/rtl8192u/r819xU_phy.h b/drivers/staging/rtl8192u/r819xU_phy.h index 6ecd76508b9c..f3c352a10fe0 100644 --- a/drivers/staging/rtl8192u/r819xU_phy.h +++ b/drivers/staging/rtl8192u/r819xU_phy.h | |||
| @@ -58,25 +58,33 @@ typedef enum _RF90_RADIO_PATH { | |||
| 58 | #define bMaskDWord 0xffffffff | 58 | #define bMaskDWord 0xffffffff |
| 59 | 59 | ||
| 60 | extern u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device *dev, u32 eRFPath); | 60 | extern u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device *dev, u32 eRFPath); |
| 61 | extern void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, u32 bitmask, u32 data); | 61 | extern void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, |
| 62 | extern u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask); | 62 | u32 bitmask, u32 data); |
| 63 | extern void rtl8192_phy_SetRFReg(struct net_device *dev, RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask, u32 data); | 63 | extern u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, |
| 64 | extern u32 rtl8192_phy_QueryRFReg(struct net_device *dev, RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask); | 64 | u32 bitmask); |
| 65 | extern void rtl8192_phy_SetRFReg(struct net_device *dev, | ||
| 66 | RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask, u32 data); | ||
| 67 | extern u32 rtl8192_phy_QueryRFReg(struct net_device *dev, | ||
| 68 | RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask); | ||
| 65 | extern void rtl8192_phy_configmac(struct net_device *dev); | 69 | extern void rtl8192_phy_configmac(struct net_device *dev); |
| 66 | extern void rtl8192_phyConfigBB(struct net_device *dev, u8 ConfigType); | 70 | extern void rtl8192_phyConfigBB(struct net_device *dev, u8 ConfigType); |
| 67 | extern u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath); | 71 | extern u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, |
| 72 | HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath); | ||
| 68 | extern void rtl8192_BBConfig(struct net_device *dev); | 73 | extern void rtl8192_BBConfig(struct net_device *dev); |
| 69 | extern void rtl8192_phy_getTxPower(struct net_device *dev); | 74 | extern void rtl8192_phy_getTxPower(struct net_device *dev); |
| 70 | extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel); | 75 | extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel); |
| 71 | extern void rtl8192_phy_RFConfig(struct net_device *dev); | 76 | extern void rtl8192_phy_RFConfig(struct net_device *dev); |
| 72 | extern void rtl8192_phy_updateInitGain(struct net_device *dev); | 77 | extern void rtl8192_phy_updateInitGain(struct net_device *dev); |
| 73 | extern u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev, RF90_RADIO_PATH_E eRFPath); | 78 | extern u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev, |
| 79 | RF90_RADIO_PATH_E eRFPath); | ||
| 74 | 80 | ||
| 75 | extern u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel); | 81 | extern u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel); |
| 76 | extern void rtl8192_SetBWMode(struct net_device *dev, HT_CHANNEL_WIDTH bandwidth, HT_EXTCHNL_OFFSET offset); | 82 | extern void rtl8192_SetBWMode(struct net_device *dev, |
| 83 | HT_CHANNEL_WIDTH bandwidth, HT_EXTCHNL_OFFSET offset); | ||
| 77 | extern void rtl8192_SwChnl_WorkItem(struct net_device *dev); | 84 | extern void rtl8192_SwChnl_WorkItem(struct net_device *dev); |
| 78 | void rtl8192_SetBWModeWorkItem(struct net_device *dev); | 85 | void rtl8192_SetBWModeWorkItem(struct net_device *dev); |
| 79 | extern bool rtl8192_SetRFPowerState(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState); | 86 | extern bool rtl8192_SetRFPowerState(struct net_device *dev, |
| 87 | RT_RF_POWER_STATE eRFPowerState); | ||
| 80 | extern void InitialGain819xUsb(struct net_device *dev, u8 Operation); | 88 | extern void InitialGain819xUsb(struct net_device *dev, u8 Operation); |
| 81 | 89 | ||
| 82 | extern void InitialGainOperateWorkItemCallBack(struct work_struct *work); | 90 | extern void InitialGainOperateWorkItemCallBack(struct work_struct *work); |
