summaryrefslogtreecommitdiffstats
path: root/drivers/staging/r8188eu/include/rtl8188e_hal.h
diff options
context:
space:
mode:
authorMartin Kaiser <martin@kaiser.cx>2022-06-27 10:53:54 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-27 13:51:08 +0200
commitdf8d0a55047b57074ac69db795a9775b3abe364e (patch)
treec79855738ef737a0401c2a327d476c65697fd09e /drivers/staging/r8188eu/include/rtl8188e_hal.h
parent1b0a54b3e83f67cade6e510f43804ac7ab4c0bb9 (diff)
downloadlinux-stable-df8d0a55047b57074ac69db795a9775b3abe364e.tar.gz
linux-stable-df8d0a55047b57074ac69db795a9775b3abe364e.tar.bz2
linux-stable-df8d0a55047b57074ac69db795a9775b3abe364e.zip
staging: r8188eu: make power sequences static
Simplify the handling of "power sequences". At the moment, this is rather complicated: The hal layer calls HalPwrSeqCmdParsing. This function takes a pointer to a power sequence. The sequences themselves are defined as global variables in a separate file. There's an alias for each sequence, the callers of HalPwrSeqCmdParsing use these aliases instead of the sequences themselves. There's no point in passing the sequences around. We can move the sequences into the same file as the HalPwrSeqCmdParsing function where they are used. Callers of HalPwrSeqCmdParsing can refer to a sequence by using a numeric define rather than a pointer to the sequence. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20220627085354.28849-1-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/r8188eu/include/rtl8188e_hal.h')
-rw-r--r--drivers/staging/r8188eu/include/rtl8188e_hal.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/r8188eu/include/rtl8188e_hal.h b/drivers/staging/r8188eu/include/rtl8188e_hal.h
index d2a069d4e1cc..5cd62b216720 100644
--- a/drivers/staging/r8188eu/include/rtl8188e_hal.h
+++ b/drivers/staging/r8188eu/include/rtl8188e_hal.h
@@ -26,11 +26,6 @@
#include "odm_RegConfig8188E.h"
#include "odm_RTL8188E.h"
-/* RTL8188E Power Configuration CMDs for USB/SDIO interfaces */
-#define Rtl8188E_NIC_PWR_ON_FLOW rtl8188E_power_on_flow
-#define Rtl8188E_NIC_DISABLE_FLOW rtl8188E_card_disable_flow
-#define Rtl8188E_NIC_LPS_ENTER_FLOW rtl8188E_enter_lps_flow
-
#define DRVINFO_SZ 4 /* unit is 8bytes */
#define PageNum_128(_Len) (u32)(((_Len)>>7) + ((_Len) & 0x7F ? 1 : 0))