]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
staging: rtl8188eu: remove the last urb callback macros
authorMartin Kaiser <martin@kaiser.cx>
Thu, 8 Apr 2021 19:55:50 +0000 (21:55 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Apr 2021 14:17:23 +0000 (16:17 +0200)
Both usb_read_port_complete and usb_write_port_complete have a regs
parameter that is not used.

When this parameter is removed, the functions can be used as urb
completion callbacks directly. There's no need for the macros that
strip the second parameter.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Link: https://lore.kernel.org/r/20210408195601.4762-1-martin@kaiser.cx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/usb_ops_linux.h
drivers/staging/rtl8188eu/os_dep/usb_ops_linux.c

index 2f4976d251a1851cd56be995ca7856d23f1d723d..0262ace52e71f6f7108927cb53c883c42478728b 100644 (file)
 #define USB_HIGH_SPEED_BULK_SIZE       512
 #define USB_FULL_SPEED_BULK_SIZE       64
 
-#define usb_write_port_complete(purb, regs)            \
-       usb_write_port_complete(purb)
-#define usb_read_port_complete(purb, regs)             \
-       usb_read_port_complete(purb)
-
 unsigned int ffaddr2pipehdl(struct dvobj_priv *pdvobj, u32 addr);
 
 u8 usb_read8(struct adapter *adapter, u32 addr);
index f2fa4fb3595f010a7984164b5f48f05c325cd659..28655f41a75b43beaed0e2b9fcbc76bf4a0ce55c 100644 (file)
@@ -334,7 +334,7 @@ u32 usb_read32(struct adapter *adapter, u32 addr)
        return le32_to_cpu(data);
 }
 
-static void usb_read_port_complete(struct urb *purb, struct pt_regs *regs)
+static void usb_read_port_complete(struct urb *purb)
 {
        struct recv_buf *precvbuf = (struct recv_buf *)purb->context;
        struct adapter *adapt = (struct adapter *)precvbuf->adapter;
@@ -519,7 +519,7 @@ int usb_write32(struct adapter *adapter, u32 addr, u32 val)
        return usbctrl_vendorreq(adapter, wvalue, &data, 4, REALTEK_USB_VENQT_WRITE);
 }
 
-static void usb_write_port_complete(struct urb *purb, struct pt_regs *regs)
+static void usb_write_port_complete(struct urb *purb)
 {
        struct xmit_buf *pxmitbuf = (struct xmit_buf *)purb->context;
        struct adapter *padapter = pxmitbuf->padapter;