diff options
author | Michael Straube <[email protected]> | 2024-08-31 12:08:05 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-09-03 10:31:56 +0200 |
commit | a5d1b523ad47ab2b7e7547c555f92f3230f046c5 (patch) | |
tree | 8b1a32047889e3bec5b2c6c583daead562e59bd3 | |
parent | b7059df44f12a481ed257b242607c0ff64b36a95 (diff) |
staging: rtl8192e: remove RF90_PATH_{C,D} from enum rf90_radio_path
RF90_PATH_C and RF90_PATH_D are unused in this driver. Remove them
from enum rf90_radio_path.
Signed-off-by: Michael Straube <[email protected]>
Tested-by: Philipp Hortmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h index ff4b4004b0d0..c928bc2b218b 100644 --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h @@ -20,8 +20,6 @@ enum hw90_block { enum rf90_radio_path { RF90_PATH_A = 0, RF90_PATH_B = 1, - RF90_PATH_C = 2, - RF90_PATH_D = 3, RF90_PATH_MAX }; |