staging: rtl8188eu: wrap lines in 80 characters
Perform cleanup for all function declarations in core/rtw_mlme_ext wherever checkpatch complains about lines being over 80 characters long. Signed-off-by: Aishwarya Pant <aishpant@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
da9551c28c
commit
2b8581077c
|
@ -605,7 +605,9 @@ static void issue_probersp(struct adapter *padapter, unsigned char *da)
|
|||
dump_mgntframe(padapter, pmgntframe);
|
||||
}
|
||||
|
||||
static int issue_probereq(struct adapter *padapter, struct ndis_802_11_ssid *pssid, u8 *da, bool wait_ack)
|
||||
static int issue_probereq(struct adapter *padapter,
|
||||
struct ndis_802_11_ssid *pssid, u8 *da,
|
||||
bool wait_ack)
|
||||
{
|
||||
int ret = _FAIL;
|
||||
struct xmit_frame *pmgntframe;
|
||||
|
@ -1196,7 +1198,8 @@ exit:
|
|||
}
|
||||
|
||||
/* when wait_ack is true, this function should be called at process context */
|
||||
static int _issue_nulldata(struct adapter *padapter, unsigned char *da, unsigned int power_mode, bool wait_ack)
|
||||
static int _issue_nulldata(struct adapter *padapter, unsigned char *da,
|
||||
unsigned int power_mode, bool wait_ack)
|
||||
{
|
||||
int ret = _FAIL;
|
||||
struct xmit_frame *pmgntframe;
|
||||
|
@ -1269,7 +1272,8 @@ exit:
|
|||
|
||||
/* when wait_ms > 0 , this function should be called at process context */
|
||||
/* da == NULL for station mode */
|
||||
int issue_nulldata(struct adapter *padapter, unsigned char *da, unsigned int power_mode, int try_cnt, int wait_ms)
|
||||
int issue_nulldata(struct adapter *padapter, unsigned char *da,
|
||||
unsigned int power_mode, int try_cnt, int wait_ms)
|
||||
{
|
||||
int ret;
|
||||
int i = 0;
|
||||
|
@ -1316,7 +1320,8 @@ exit:
|
|||
}
|
||||
|
||||
/* when wait_ack is true, this function should be called at process context */
|
||||
static int _issue_qos_nulldata(struct adapter *padapter, unsigned char *da, u16 tid, bool wait_ack)
|
||||
static int _issue_qos_nulldata(struct adapter *padapter, unsigned char *da,
|
||||
u16 tid, bool wait_ack)
|
||||
{
|
||||
int ret = _FAIL;
|
||||
struct xmit_frame *pmgntframe;
|
||||
|
@ -1396,7 +1401,8 @@ exit:
|
|||
|
||||
/* when wait_ms > 0 , this function should be called at process context */
|
||||
/* da == NULL for station mode */
|
||||
int issue_qos_nulldata(struct adapter *padapter, unsigned char *da, u16 tid, int try_cnt, int wait_ms)
|
||||
int issue_qos_nulldata(struct adapter *padapter, unsigned char *da,
|
||||
u16 tid, int try_cnt, int wait_ms)
|
||||
{
|
||||
int ret;
|
||||
int i = 0;
|
||||
|
@ -1442,7 +1448,8 @@ exit:
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int _issue_deauth(struct adapter *padapter, unsigned char *da, unsigned short reason, bool wait_ack)
|
||||
static int _issue_deauth(struct adapter *padapter, unsigned char *da,
|
||||
unsigned short reason, bool wait_ack)
|
||||
{
|
||||
struct xmit_frame *pmgntframe;
|
||||
struct pkt_attrib *pattrib;
|
||||
|
@ -1502,7 +1509,8 @@ exit:
|
|||
return ret;
|
||||
}
|
||||
|
||||
int issue_deauth(struct adapter *padapter, unsigned char *da, unsigned short reason)
|
||||
int issue_deauth(struct adapter *padapter, unsigned char *da,
|
||||
unsigned short reason)
|
||||
{
|
||||
DBG_88E("%s to %pM\n", __func__, da);
|
||||
return _issue_deauth(padapter, da, reason, false);
|
||||
|
@ -3757,7 +3765,8 @@ static unsigned int on_action_public_vendor(struct recv_frame *precv_frame)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static unsigned int on_action_public_default(struct recv_frame *precv_frame, u8 action)
|
||||
static unsigned int on_action_public_default(struct recv_frame *precv_frame,
|
||||
u8 action)
|
||||
{
|
||||
unsigned int ret = _FAIL;
|
||||
u8 *pframe = precv_frame->pkt->data;
|
||||
|
@ -3972,9 +3981,10 @@ static int has_channel(struct rt_channel_info *channel_set,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void init_channel_list(struct adapter *padapter, struct rt_channel_info *channel_set,
|
||||
u8 chanset_size,
|
||||
struct p2p_channels *channel_list)
|
||||
static void init_channel_list(struct adapter *padapter,
|
||||
struct rt_channel_info *channel_set,
|
||||
u8 chanset_size,
|
||||
struct p2p_channels *channel_list)
|
||||
{
|
||||
struct p2p_oper_class_map op_class[] = {
|
||||
{ IEEE80211G, 81, 1, 13, 1, BW20 },
|
||||
|
@ -4015,7 +4025,8 @@ static void init_channel_list(struct adapter *padapter, struct rt_channel_info *
|
|||
channel_list->reg_classes = cla;
|
||||
}
|
||||
|
||||
static u8 init_channel_set(struct adapter *padapter, u8 ChannelPlan, struct rt_channel_info *channel_set)
|
||||
static u8 init_channel_set(struct adapter *padapter, u8 ChannelPlan,
|
||||
struct rt_channel_info *channel_set)
|
||||
{
|
||||
u8 index, chanset_size = 0;
|
||||
u8 b2_4GBand = false;
|
||||
|
@ -4105,7 +4116,9 @@ void free_mlme_ext_priv(struct mlme_ext_priv *pmlmeext)
|
|||
}
|
||||
}
|
||||
|
||||
static void _mgt_dispatcher(struct adapter *padapter, struct mlme_handler *ptable, struct recv_frame *precv_frame)
|
||||
static void _mgt_dispatcher(struct adapter *padapter,
|
||||
struct mlme_handler *ptable,
|
||||
struct recv_frame *precv_frame)
|
||||
{
|
||||
u8 bc_addr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
||||
u8 *pframe = precv_frame->pkt->data;
|
||||
|
@ -4351,7 +4364,8 @@ void report_join_res(struct adapter *padapter, int res)
|
|||
rtw_enqueue_cmd(pcmdpriv, pcmd_obj);
|
||||
}
|
||||
|
||||
void report_del_sta_event(struct adapter *padapter, unsigned char *MacAddr, unsigned short reason)
|
||||
void report_del_sta_event(struct adapter *padapter, unsigned char *MacAddr,
|
||||
unsigned short reason)
|
||||
{
|
||||
struct cmd_obj *pcmd_obj;
|
||||
u8 *pevtcmd;
|
||||
|
@ -4406,7 +4420,8 @@ void report_del_sta_event(struct adapter *padapter, unsigned char *MacAddr, unsi
|
|||
rtw_enqueue_cmd(pcmdpriv, pcmd_obj);
|
||||
}
|
||||
|
||||
void report_add_sta_event(struct adapter *padapter, unsigned char *MacAddr, int cam_idx)
|
||||
void report_add_sta_event(struct adapter *padapter, unsigned char *MacAddr,
|
||||
int cam_idx)
|
||||
{
|
||||
struct cmd_obj *pcmd_obj;
|
||||
u8 *pevtcmd;
|
||||
|
@ -5125,8 +5140,10 @@ u8 disconnect_hdl(struct adapter *padapter, unsigned char *pbuf)
|
|||
return H2C_SUCCESS;
|
||||
}
|
||||
|
||||
static int rtw_scan_ch_decision(struct adapter *padapter, struct rtw_ieee80211_channel *out,
|
||||
u32 out_num, struct rtw_ieee80211_channel *in, u32 in_num)
|
||||
static int rtw_scan_ch_decision(struct adapter *padapter,
|
||||
struct rtw_ieee80211_channel *out,
|
||||
u32 out_num,
|
||||
struct rtw_ieee80211_channel *in, u32 in_num)
|
||||
{
|
||||
int i, j;
|
||||
int set_idx;
|
||||
|
|
Loading…
Reference in New Issue