Re: [PATCH 01/10] staging: rtl8188eu: remove unused macros

From: Greg Kroah-Hartman
Date: Thu Apr 08 2021 - 03:26:15 EST


On Wed, Apr 07, 2021 at 07:05:22PM +0200, Martin Kaiser wrote:
> usb_ops_linux.h contains a couple of macros to make functions usable as
> urb completion callbacks. Most of them are unused and can be removed.
>
> Signed-off-by: Martin Kaiser <martin@xxxxxxxxx>
> ---
> drivers/staging/rtl8188eu/include/usb_ops_linux.h | 8 --------
> 1 file changed, 8 deletions(-)
>
> diff --git a/drivers/staging/rtl8188eu/include/usb_ops_linux.h b/drivers/staging/rtl8188eu/include/usb_ops_linux.h
> index 4e0e48cb5c8e..1a0b38de5027 100644
> --- a/drivers/staging/rtl8188eu/include/usb_ops_linux.h
> +++ b/drivers/staging/rtl8188eu/include/usb_ops_linux.h
> @@ -23,18 +23,10 @@
> #define USB_HIGH_SPEED_BULK_SIZE 512
> #define USB_FULL_SPEED_BULK_SIZE 64
>
> -#define _usbctrl_vendorreq_async_callback(urb, regs) \
> - _usbctrl_vendorreq_async_callback(urb)
> -#define usb_bulkout_zero_complete(purb, regs) \
> - usb_bulkout_zero_complete(purb)
> -#define usb_write_mem_complete(purb, regs) \
> - usb_write_mem_complete(purb)
> #define usb_write_port_complete(purb, regs) \
> usb_write_port_complete(purb)
> #define usb_read_port_complete(purb, regs) \
> usb_read_port_complete(purb)
> -#define usb_read_interrupt_complete(purb, regs) \
> - usb_read_interrupt_complete(purb)

Wow, that's there for a really old kernel version and should not be
needed anymore at all. I'll take this, but please remove the other ones
here, they are not necessary.

thanks,

greg k-h