summaryrefslogtreecommitdiff
path: root/drivers/staging/r8188eu/include
diff options
context:
space:
mode:
authorMartin Kaiser <martin@kaiser.cx>2023-02-07 22:23:17 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-02-08 15:30:00 +0300
commit2bc00bac61ddc253d67da266372a04a23be08bd2 (patch)
treee421332566cadcf514e22ab816a22f40e9dbfae8 /drivers/staging/r8188eu/include
parentb5e9b074275fe80b8483260e81979fef720bb73a (diff)
downloadlinux-2bc00bac61ddc253d67da266372a04a23be08bd2.tar.xz
staging: r8188eu: simplify xmit_buf flags
rtw_write_port stores a queue index in pxmitbuf->flags before submitting an urb. The urb completion function reads the flags. All it needs is the info if the high queue was used or not. We can replace the flags with a boolean high_queue variable. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Link: https://lore.kernel.org/r/20230207192319.294203-6-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/r8188eu/include')
-rw-r--r--drivers/staging/r8188eu/include/rtw_xmit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/r8188eu/include/rtw_xmit.h b/drivers/staging/r8188eu/include/rtw_xmit.h
index 9a001fbf45a0..feeac85aedb0 100644
--- a/drivers/staging/r8188eu/include/rtw_xmit.h
+++ b/drivers/staging/r8188eu/include/rtw_xmit.h
@@ -189,7 +189,7 @@ struct xmit_buf {
u8 *pbuf;
void *priv_data;
u16 ext_tag; /* 0: Normal xmitbuf, 1: extension xmitbuf. */
- u16 flags;
+ bool high_queue;
u32 alloc_sz;
u32 len;
struct submit_ctx *sctx;