mirror of https://gitee.com/openkylin/linux.git
Staging: rtl8188eu: fix space prohibited before that ','
This patch fixes the following checkpatch.pl error: fix space prohibited before that ',' Signed-off-by: Abdul Hussain <hussain.abdul@outlook.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
37efd08231
commit
6d9b0f00ec
|
@ -641,7 +641,7 @@ static s32 xmitframe_addmic(struct adapter *padapter, struct xmit_frame *pxmitfr
|
||||||
if (pattrib->psta)
|
if (pattrib->psta)
|
||||||
stainfo = pattrib->psta;
|
stainfo = pattrib->psta;
|
||||||
else
|
else
|
||||||
stainfo = rtw_get_stainfo(&padapter->stapriv , &pattrib->ra[0]);
|
stainfo = rtw_get_stainfo(&padapter->stapriv, &pattrib->ra[0]);
|
||||||
|
|
||||||
|
|
||||||
hw_hdr_offset = TXDESC_SIZE + (pxmitframe->pkt_offset * PACKET_OFFSET_SZ);
|
hw_hdr_offset = TXDESC_SIZE + (pxmitframe->pkt_offset * PACKET_OFFSET_SZ);
|
||||||
|
@ -1702,12 +1702,12 @@ u32 rtw_get_ff_hwaddr(struct xmit_frame *pxmitframe)
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_queue_select(struct adapter *padapter, struct pkt_attrib *pattrib)
|
static void do_queue_select(struct adapter *padapter, struct pkt_attrib *pattrib)
|
||||||
{
|
{
|
||||||
u8 qsel;
|
u8 qsel;
|
||||||
|
|
||||||
qsel = pattrib->priority;
|
qsel = pattrib->priority;
|
||||||
RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, ("### do_queue_select priority=%d , qsel = %d\n", pattrib->priority , qsel));
|
RT_TRACE(_module_rtl871x_xmit_c_, _drv_info_, ("### do_queue_select priority=%d , qsel = %d\n", pattrib->priority, qsel));
|
||||||
|
|
||||||
pattrib->qsel = qsel;
|
pattrib->qsel = qsel;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue