aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXenia Ragiadakou <burzalodowa@gmail.com>2013-06-24 19:29:01 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-24 19:44:59 -0400
commit59f30ae02cc0d0eaf4e1186734c4b80c06d77eeb (patch)
tree3eed45f0fe9e3eee6ed6a78efabea7c6d2e73e18
parenta029ccae0ac349a5f56c9a8fc9dd229679449c6f (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.h24
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
60extern u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device *dev, u32 eRFPath); 60extern u8 rtl8192_phy_CheckIsLegalRFPath(struct net_device *dev, u32 eRFPath);
61extern void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, u32 bitmask, u32 data); 61extern void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr,
62extern u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask); 62 u32 bitmask, u32 data);
63extern void rtl8192_phy_SetRFReg(struct net_device *dev, RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask, u32 data); 63extern u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr,
64extern u32 rtl8192_phy_QueryRFReg(struct net_device *dev, RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask); 64 u32 bitmask);
65extern void rtl8192_phy_SetRFReg(struct net_device *dev,
66 RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask, u32 data);
67extern u32 rtl8192_phy_QueryRFReg(struct net_device *dev,
68 RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask);
65extern void rtl8192_phy_configmac(struct net_device *dev); 69extern void rtl8192_phy_configmac(struct net_device *dev);
66extern void rtl8192_phyConfigBB(struct net_device *dev, u8 ConfigType); 70extern void rtl8192_phyConfigBB(struct net_device *dev, u8 ConfigType);
67extern u8 rtl8192_phy_checkBBAndRF(struct net_device *dev, HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath); 71extern u8 rtl8192_phy_checkBBAndRF(struct net_device *dev,
72 HW90_BLOCK_E CheckBlock, RF90_RADIO_PATH_E eRFPath);
68extern void rtl8192_BBConfig(struct net_device *dev); 73extern void rtl8192_BBConfig(struct net_device *dev);
69extern void rtl8192_phy_getTxPower(struct net_device *dev); 74extern void rtl8192_phy_getTxPower(struct net_device *dev);
70extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel); 75extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel);
71extern void rtl8192_phy_RFConfig(struct net_device *dev); 76extern void rtl8192_phy_RFConfig(struct net_device *dev);
72extern void rtl8192_phy_updateInitGain(struct net_device *dev); 77extern void rtl8192_phy_updateInitGain(struct net_device *dev);
73extern u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev, RF90_RADIO_PATH_E eRFPath); 78extern u8 rtl8192_phy_ConfigRFWithHeaderFile(struct net_device *dev,
79 RF90_RADIO_PATH_E eRFPath);
74 80
75extern u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel); 81extern u8 rtl8192_phy_SwChnl(struct net_device *dev, u8 channel);
76extern void rtl8192_SetBWMode(struct net_device *dev, HT_CHANNEL_WIDTH bandwidth, HT_EXTCHNL_OFFSET offset); 82extern void rtl8192_SetBWMode(struct net_device *dev,
83 HT_CHANNEL_WIDTH bandwidth, HT_EXTCHNL_OFFSET offset);
77extern void rtl8192_SwChnl_WorkItem(struct net_device *dev); 84extern void rtl8192_SwChnl_WorkItem(struct net_device *dev);
78void rtl8192_SetBWModeWorkItem(struct net_device *dev); 85void rtl8192_SetBWModeWorkItem(struct net_device *dev);
79extern bool rtl8192_SetRFPowerState(struct net_device *dev, RT_RF_POWER_STATE eRFPowerState); 86extern bool rtl8192_SetRFPowerState(struct net_device *dev,
87 RT_RF_POWER_STATE eRFPowerState);
80extern void InitialGain819xUsb(struct net_device *dev, u8 Operation); 88extern void InitialGain819xUsb(struct net_device *dev, u8 Operation);
81 89
82extern void InitialGainOperateWorkItemCallBack(struct work_struct *work); 90extern void InitialGainOperateWorkItemCallBack(struct work_struct *work);