]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
staging: rtl8723bs: Remove unused macros in rtw_io.h
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Sun, 23 Jun 2024 17:58:15 +0000 (19:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jun 2024 13:25:56 +0000 (15:25 +0200)
Remove unused macros.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/91e79b32292ba567c2ec624e130350a40a7866b5.1719155208.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/include/rtw_io.h

index e98083a07a66006ff684cca9f7347e88d6c43086..be9741a056e558fb81055c9335cb808613305344 100644 (file)
@@ -8,70 +8,13 @@
 #ifndef _RTW_IO_H_
 #define _RTW_IO_H_
 
-#define NUM_IOREQ              8
-
-#define MAX_PROT_SZ    (64-16)
-
-#define _IOREADY                       0
-#define _IO_WAIT_COMPLETE   1
-#define _IO_WAIT_RSP        2
-
-/*  IO COMMAND TYPE */
-#define _IOSZ_MASK_            (0x7F)
-#define _IO_WRITE_             BIT(7)
-#define _IO_FIXED_             BIT(8)
-#define _IO_BURST_             BIT(9)
-#define _IO_BYTE_              BIT(10)
-#define _IO_HW_                        BIT(11)
-#define _IO_WORD_              BIT(12)
-#define _IO_SYNC_              BIT(13)
-#define _IO_CMDMASK_   (0x1F80)
-
-
 /*
        For prompt mode accessing, caller shall free io_req
        Otherwise, io_handler will free io_req
 */
 
-
-
-/*  IO STATUS TYPE */
-#define _IO_ERR_               BIT(2)
-#define _IO_SUCCESS_   BIT(1)
-#define _IO_DONE_              BIT(0)
-
-
-#define IO_RD32                        (_IO_SYNC_ | _IO_WORD_)
-#define IO_RD16                        (_IO_SYNC_ | _IO_HW_)
-#define IO_RD8                 (_IO_SYNC_ | _IO_BYTE_)
-
-#define IO_RD32_ASYNC  (_IO_WORD_)
-#define IO_RD16_ASYNC  (_IO_HW_)
-#define IO_RD8_ASYNC   (_IO_BYTE_)
-
-#define IO_WR32                        (_IO_WRITE_ | _IO_SYNC_ | _IO_WORD_)
-#define IO_WR16                        (_IO_WRITE_ | _IO_SYNC_ | _IO_HW_)
-#define IO_WR8                 (_IO_WRITE_ | _IO_SYNC_ | _IO_BYTE_)
-
-#define IO_WR32_ASYNC  (_IO_WRITE_ | _IO_WORD_)
-#define IO_WR16_ASYNC  (_IO_WRITE_ | _IO_HW_)
-#define IO_WR8_ASYNC   (_IO_WRITE_ | _IO_BYTE_)
-
-/*
-
-       Only Sync. burst accessing is provided.
-
-*/
-
-#define IO_WR_BURST(x)         (_IO_WRITE_ | _IO_SYNC_ | _IO_BURST_ | ((x) & _IOSZ_MASK_))
-#define IO_RD_BURST(x)         (_IO_SYNC_ | _IO_BURST_ | ((x) & _IOSZ_MASK_))
-
-
-
 /* below is for the intf_option bit defition... */
 
-#define _INTF_ASYNC_   BIT(0)  /* support async io */
-
 struct intf_priv;
 struct intf_hdl;
 struct io_queue;