aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
diff options
context:
space:
mode:
authorMartin Kaiser <martin@kaiser.cx>2021-06-20 19:52:53 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-06-24 14:42:44 +0200
commit7ad9bc70e1acdc9746e5c49db38f86d43e2c9bd3 (patch)
tree8eacaec481402385f5b67f55c891f6c8e196baa4 /drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
parentstaging: rtl8188eu: remove a couple of unused defines (diff)
downloadlinux-dev-7ad9bc70e1acdc9746e5c49db38f86d43e2c9bd3.tar.xz
linux-dev-7ad9bc70e1acdc9746e5c49db38f86d43e2c9bd3.zip
staging: rtl8188eu: remove efuse type
A number of efuse-related functions have an "efuse type" parameter. This type is not used and can be removed. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20210620175301.14988-5-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c')
-rw-r--r--drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c b/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
index 5c76d0de6c91..22c9b20de342 100644
--- a/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
+++ b/drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.c
@@ -235,12 +235,12 @@ void Hal_InitPGData88E(struct adapter *padapter)
if (!pEEPROM->bautoload_fail_flag) { /* autoload OK. */
if (!is_boot_from_eeprom(padapter)) {
/* Read EFUSE real map to shadow. */
- EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI);
+ EFUSE_ShadowMapUpdate(padapter);
}
} else {/* autoload fail */
/* update to default value 0xFF */
if (!is_boot_from_eeprom(padapter))
- EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI);
+ EFUSE_ShadowMapUpdate(padapter);
}
}