Skip to content

Commit

Permalink
staging: rtl8723bs: Fix coding style issue in block comment
Browse files Browse the repository at this point in the history
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 <tegongkang@gmail.com>
  • Loading branch information
kangtegong authored and intel-lab-lkp committed Sep 19, 2022
1 parent 9634b37 commit 3f200da
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions drivers/staging/rtl8723bs/core/rtw_recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,22 +203,12 @@ signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *q
}

/*
signed int rtw_enqueue_recvframe(union recv_frame *precvframe, struct __queue *queue)
{
return rtw_free_recvframe(precvframe, queue);
}
*/




/*
caller : defrag ; recvframe_chk_defrag in recv_thread (passive)
pframequeue: defrag_queue : will be accessed in recv_thread (passive)
using spinlock to protect
*/
* caller : defrag ; recvframe_chk_defrag in recv_thread (passive)
* pframequeue: defrag_queue : will be accessed in recv_thread (passive)
*
* using spinlock to protect
*
*/

void rtw_free_recvframe_queue(struct __queue *pframequeue, struct __queue *pfree_recv_queue)
{
Expand Down

0 comments on commit 3f200da

Please sign in to comment.