staging: rtl8712: r8712_xmitframe_aggr_1st(): Change return type to void
Change return type of r8712_xmitframe_aggr_1st from u8 to void as it always returns _SUCCESS and its return value is never used. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190813044638.16348-3-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bc6132f141
commit
b849e9a4a0
|
@ -318,8 +318,8 @@ void r8712_append_mpdu_unit(struct xmit_buf *pxmitbuf,
|
|||
}
|
||||
|
||||
|
||||
u8 r8712_xmitframe_aggr_1st(struct xmit_buf *pxmitbuf,
|
||||
struct xmit_frame *pxmitframe)
|
||||
void r8712_xmitframe_aggr_1st(struct xmit_buf *pxmitbuf,
|
||||
struct xmit_frame *pxmitframe)
|
||||
{
|
||||
/* linux complete context doesn't need to protect */
|
||||
pxmitframe->pxmitbuf = pxmitbuf;
|
||||
|
@ -332,8 +332,6 @@ u8 r8712_xmitframe_aggr_1st(struct xmit_buf *pxmitbuf,
|
|||
r8712_construct_txaggr_cmd_hdr(pxmitbuf);
|
||||
r8712_append_mpdu_unit(pxmitbuf, pxmitframe);
|
||||
pxmitbuf->aggr_nr = 1;
|
||||
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
u16 r8712_xmitframe_aggr_next(struct xmit_buf *pxmitbuf,
|
||||
|
|
|
@ -102,8 +102,8 @@ void r8712_do_queue_select(struct _adapter *padapter,
|
|||
struct pkt_attrib *pattrib);
|
||||
|
||||
#ifdef CONFIG_R8712_TX_AGGR
|
||||
u8 r8712_xmitframe_aggr_1st(struct xmit_buf *pxmitbuf,
|
||||
struct xmit_frame *pxmitframe);
|
||||
void r8712_xmitframe_aggr_1st(struct xmit_buf *pxmitbuf,
|
||||
struct xmit_frame *pxmitframe);
|
||||
u8 r8712_dump_aggr_xframe(struct xmit_buf *pxmitbuf,
|
||||
struct xmit_frame *pxmitframe);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue