Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8723bs: Remove unused macros in HalPwrSeqCmd.h

Remove unused macros.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/ac52d73666090a70e8c1edc87e511f1ea2c139e4.1720245061.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Philipp Hortmann and committed by
Greg Kroah-Hartman
df6d6cc7 551977b7

-11
-11
drivers/staging/rtl8723bs/include/HalPwrSeqCmd.h
··· 49 49 /*---------------------------------------------*/ 50 50 /* define the base address of each block */ 51 51 #define PWR_BASEADDR_MAC 0x00 52 - #define PWR_BASEADDR_USB 0x01 53 - #define PWR_BASEADDR_PCIE 0x02 54 52 #define PWR_BASEADDR_SDIO 0x03 55 53 56 54 /*---------------------------------------------*/ ··· 62 64 /*---------------------------------------------*/ 63 65 /* 3 The value of fab_msk: 4 bits */ 64 66 /*---------------------------------------------*/ 65 - #define PWR_FAB_TSMC_MSK BIT(0) 66 - #define PWR_FAB_UMC_MSK BIT(1) 67 67 #define PWR_FAB_ALL_MSK (BIT(0)|BIT(1)|BIT(2)|BIT(3)) 68 68 69 69 /*---------------------------------------------*/ 70 70 /* 3 The value of cut_msk: 8 bits */ 71 71 /*---------------------------------------------*/ 72 72 #define PWR_CUT_TESTCHIP_MSK BIT(0) 73 - #define PWR_CUT_A_MSK BIT(1) 74 - #define PWR_CUT_B_MSK BIT(2) 75 - #define PWR_CUT_C_MSK BIT(3) 76 - #define PWR_CUT_D_MSK BIT(4) 77 - #define PWR_CUT_E_MSK BIT(5) 78 - #define PWR_CUT_F_MSK BIT(6) 79 - #define PWR_CUT_G_MSK BIT(7) 80 73 #define PWR_CUT_ALL_MSK 0xFF 81 74 82 75