Commit 2490fbf7 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman

staging: r8188eu: rename rtl8188e_free_hal_data to rtw_hal_free_data

And remove two one-line wrappers.
Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a5c25874
...@@ -19,12 +19,6 @@ ...@@ -19,12 +19,6 @@
#include <hal_intf.h> #include <hal_intf.h>
#include <usb_hal.h> #include <usb_hal.h>
void rtw_hal_free_data(struct adapter *adapt)
{
if (adapt->HalFunc.free_hal_data)
adapt->HalFunc.free_hal_data(adapt);
}
uint rtw_hal_init(struct adapter *adapt) uint rtw_hal_init(struct adapter *adapt)
{ {
uint status = _SUCCESS; uint status = _SUCCESS;
......
...@@ -117,7 +117,7 @@ void rtl8188e_InitializeFirmwareVars(struct adapter *padapter) ...@@ -117,7 +117,7 @@ void rtl8188e_InitializeFirmwareVars(struct adapter *padapter)
pHalData->LastHMEBoxNum = 0; pHalData->LastHMEBoxNum = 0;
} }
static void rtl8188e_free_hal_data(struct adapter *padapter) void rtw_hal_free_data(struct adapter *padapter)
{ {
kfree(padapter->HalData); kfree(padapter->HalData);
padapter->HalData = NULL; padapter->HalData = NULL;
...@@ -187,7 +187,6 @@ void rtw_hal_notch_filter(struct adapter *adapter, bool enable) ...@@ -187,7 +187,6 @@ void rtw_hal_notch_filter(struct adapter *adapter, bool enable)
} }
void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc) void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
{ {
pHalFunc->free_hal_data = &rtl8188e_free_hal_data;
} }
/* */ /* */
......
...@@ -140,8 +140,6 @@ enum hal_intf_ps_func { ...@@ -140,8 +140,6 @@ enum hal_intf_ps_func {
}; };
struct hal_ops { struct hal_ops {
void (*free_hal_data)(struct adapter *padapter);
s32 (*interrupt_handler)(struct adapter *padapter); s32 (*interrupt_handler)(struct adapter *padapter);
void (*hal_reset_security_engine)(struct adapter *adapter); void (*hal_reset_security_engine)(struct adapter *adapter);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment