staging: wlags49_h2: Enclose macro in a do-while loop
Fix the following checkpatch.pl issues in wl_netdev.c: ERROR: Macros with multiple statements should be enclosed in a do - while loop Signed-off-by: Jelena Bjelja <jelena.bjelja.ing@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a0ecdf0695
commit
877ba1eff2
|
@ -107,9 +107,11 @@
|
|||
* macros
|
||||
******************************************************************************/
|
||||
#define BLOCK_INPUT(buf, len) \
|
||||
do { \
|
||||
desc->buf_addr = buf; \
|
||||
desc->BUF_SIZE = len; \
|
||||
status = hcf_rcv_msg(&(lp->hcfCtx), desc, 0)
|
||||
status = hcf_rcv_msg(&(lp->hcfCtx), desc, 0); \
|
||||
} while (0)
|
||||
|
||||
#define BLOCK_INPUT_DMA(buf, len) memcpy( buf, desc_next->buf_addr, pktlen )
|
||||
|
||||
|
|
Loading…
Reference in New Issue