diff options
author | Ivan Safonov <insafonov@gmail.com> | 2016-09-03 22:34:00 +0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-12 11:30:04 +0200 |
commit | 71d387c9ddc585f35cfaccabebe5890e8e90bb73 (patch) | |
tree | bb2085998590b709f4e720fd314a320d059bd1ac /drivers/staging/rtl8188eu | |
parent | e72a384b8fa3599bf8f4f9d6cd139f83ce8d168e (diff) | |
download | linux-71d387c9ddc585f35cfaccabebe5890e8e90bb73.tar.gz linux-71d387c9ddc585f35cfaccabebe5890e8e90bb73.tar.bz2 linux-71d387c9ddc585f35cfaccabebe5890e8e90bb73.zip |
staging: r8188eu: remove HalFunc member of adapter structure
hal_ops structure is empty.
Also remove hal_ops definition.
Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r-- | drivers/staging/rtl8188eu/include/drv_types.h | 1 | ||||
-rw-r--r-- | drivers/staging/rtl8188eu/include/hal_intf.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/rtl8188eu/include/drv_types.h b/drivers/staging/rtl8188eu/include/drv_types.h index 7b56540554bf..7af690ed2f01 100644 --- a/drivers/staging/rtl8188eu/include/drv_types.h +++ b/drivers/staging/rtl8188eu/include/drv_types.h @@ -155,7 +155,6 @@ struct adapter { struct led_priv ledpriv; void *HalData; - struct hal_ops HalFunc; s32 bDriverStopped; s32 bSurpriseRemoved; diff --git a/drivers/staging/rtl8188eu/include/hal_intf.h b/drivers/staging/rtl8188eu/include/hal_intf.h index 262a704add21..0c0fa3551570 100644 --- a/drivers/staging/rtl8188eu/include/hal_intf.h +++ b/drivers/staging/rtl8188eu/include/hal_intf.h @@ -139,9 +139,6 @@ enum hal_intf_ps_func { HAL_MAX_ID, }; -struct hal_ops { -}; - enum rt_eeprom_type { EEPROM_93C46, EEPROM_93C56, |