Skip to content

Commit 7f82c9b

Browse files
kangtegongintel-lab-lkp
authored andcommitted
staging: rtl8723bs: Fix coding style issue in block comment
This patch removes the following warning generated by checkpatch.pl WARNING: Block comments use * on subsequent lines torvalds#206: FILE: rtw_recv.c:206: +/* +signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue) WARNING: Block comments use * on subsequent lines torvalds#216: FILE: rtw_recv.c:216: +/* +caller : defrag ; recvframe_chk_defrag in recv_thread (passive) Signed-off-by: Kang Minchul <[email protected]>
1 parent 9634b37 commit 7f82c9b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

drivers/staging/rtl8723bs/core/rtw_recv.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -203,22 +203,22 @@ signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *q
203203
}
204204

205205
/*
206-
signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue)
207-
{
208-
return rtw_free_recvframe(precvframe, queue);
209-
}
210-
*/
206+
* signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue)
207+
* {
208+
* return rtw_free_recvframe(precvframe, queue);
209+
* }
210+
*/
211211

212212

213213

214214

215215
/*
216-
caller : defrag ; recvframe_chk_defrag in recv_thread (passive)
217-
pframequeue: defrag_queue : will be accessed in recv_thread (passive)
218-
219-
using spinlock to protect
220-
221-
*/
216+
* caller : defrag ; recvframe_chk_defrag in recv_thread (passive)
217+
* pframequeue: defrag_queue : will be accessed in recv_thread (passive)
218+
*
219+
* using spinlock to protect
220+
*
221+
*/
222222

223223
void rtw_free_recvframe_queue(struct __queue *pframequeue, struct __queue *pfree_recv_queue)
224224
{

0 commit comments

Comments
 (0)