Commit 34b19431 authored by Rebecca Mckeever's avatar Rebecca Mckeever Committed by Greg Kroah-Hartman

staging: r8188eu: format block comments

Add ' * ' or ' ' to beginning of block comment lines
to conform to Linux kernel coding style.

Reported by checkpatch:

WARNING: Block comments use * on subsequent lines
Signed-off-by: default avatarRebecca Mckeever <remckee0@gmail.com>
Link: https://lore.kernel.org/r/0387f3df49d89c17acf96cf072e70c98e81e58f7.1648888462.git.remckee0@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 95cfe1f0
...@@ -12,9 +12,9 @@ ...@@ -12,9 +12,9 @@
#include "../include/rtl8188e_dm.h" #include "../include/rtl8188e_dm.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.
*/ */
static int _rtw_init_cmd_priv(struct cmd_priv *pcmdpriv) static int _rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
{ {
...@@ -97,14 +97,13 @@ static void _rtw_free_cmd_priv(struct cmd_priv *pcmdpriv) ...@@ -97,14 +97,13 @@ static void _rtw_free_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)
{ {
...@@ -319,10 +318,10 @@ int rtw_cmd_thread(void *context) ...@@ -319,10 +318,10 @@ int rtw_cmd_thread(void *context)
} }
/* /*
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)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment