Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8712: fix a foo * bar errors reported by checkpatch

fixes the following error:

drivers/staging/rtl8712/rtl8712_xmit.c:379: ERROR: "foo * bar" should
be "foo *bar"

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Devendra Naga and committed by
Greg Kroah-Hartman
c06df233 e1656648

+1 -1
+1 -1
drivers/staging/rtl8712/rtl8712_xmit.c
··· 376 376 { 377 377 struct _adapter *padapter = pxmitframe->padapter; 378 378 struct dvobj_priv *pdvobj = (struct dvobj_priv *) &padapter->dvobjpriv; 379 - struct tx_desc * ptxdesc = (struct tx_desc *)pxmitbuf->pbuf; 379 + struct tx_desc *ptxdesc = (struct tx_desc *)pxmitbuf->pbuf; 380 380 struct cmd_hdr *pcmd_hdr = (struct cmd_hdr *) 381 381 (pxmitbuf->pbuf + TXDESC_SIZE); 382 382 u16 total_length = (u16) (ptxdesc->txdw0 & 0xffff);