forked from Minki/linux
staging: rtl8188eu: fixes block comments subsequent lines
This patch adds * on block comments subsequent lines, which were causing a checkpatch styling warning. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
74e1e498e8
commit
31e6de0048
@ -21,9 +21,9 @@
|
|||||||
#include <rtw_mlme_ext.h>
|
#include <rtw_mlme_ext.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Caller and the rtw_cmd_thread can protect cmd_q by spin_lock.
|
* Caller and the rtw_cmd_thread can protect cmd_q by spin_lock.
|
||||||
No irqsave is necessary.
|
* No irqsave is necessary.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
|
int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
|
||||||
{
|
{
|
||||||
@ -35,14 +35,13 @@ int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Calling Context:
|
* Calling Context:
|
||||||
|
*
|
||||||
rtw_enqueue_cmd can only be called between kernel thread,
|
* rtw_enqueue_cmd can only be called between kernel thread,
|
||||||
since only spin_lock is used.
|
* since only spin_lock is used.
|
||||||
|
*
|
||||||
ISR/Call-Back functions can't call this sub-function.
|
* ISR/Call-Back functions can't call this sub-function.
|
||||||
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
static int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj)
|
static int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj)
|
||||||
{
|
{
|
||||||
@ -241,10 +240,11 @@ _next:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
rtw_sitesurvey_cmd(~)
|
* rtw_sitesurvey_cmd(~)
|
||||||
### NOTE:#### (!!!!)
|
* ### NOTE:#### (!!!!)
|
||||||
MUST TAKE CARE THAT BEFORE CALLING THIS FUNC, YOU SHOULD HAVE LOCKED pmlmepriv->lock
|
* MUST TAKE CARE THAT BEFORE CALLING THIS FUNC, YOU SHOULD HAVE
|
||||||
*/
|
* LOCKED pmlmepriv->lock
|
||||||
|
*/
|
||||||
u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid, int ssid_num,
|
u8 rtw_sitesurvey_cmd(struct adapter *padapter, struct ndis_802_11_ssid *ssid, int ssid_num,
|
||||||
struct rtw_ieee80211_channel *ch, int ch_num)
|
struct rtw_ieee80211_channel *ch, int ch_num)
|
||||||
{
|
{
|
||||||
@ -1276,7 +1276,9 @@ void rtw_createbss_cmd_callback(struct adapter *padapter, struct cmd_obj *pcmd)
|
|||||||
_clr_fwstate_(pmlmepriv, _FW_UNDER_LINKING);
|
_clr_fwstate_(pmlmepriv, _FW_UNDER_LINKING);
|
||||||
|
|
||||||
spin_unlock_bh(&pmlmepriv->scanned_queue.lock);
|
spin_unlock_bh(&pmlmepriv->scanned_queue.lock);
|
||||||
/* we will set _FW_LINKED when there is one more sat to join us (rtw_stassoc_event_callback) */
|
/* we will set _FW_LINKED when there is one more sat to
|
||||||
|
* join us (rtw_stassoc_event_callback)
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
createbss_cmd_fail:
|
createbss_cmd_fail:
|
||||||
|
Loading…
Reference in New Issue
Block a user