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

staging: r8188eu: rename ReadChipVersion8188E to rtw_hal_read_chip_version

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 1ac7c986
...@@ -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_read_chip_version(struct adapter *adapt)
{
if (adapt->HalFunc.read_chip_version)
adapt->HalFunc.read_chip_version(adapt);
}
void rtw_hal_free_data(struct adapter *adapt) void rtw_hal_free_data(struct adapter *adapt)
{ {
if (adapt->HalFunc.free_hal_data) if (adapt->HalFunc.free_hal_data)
......
...@@ -123,7 +123,7 @@ static void rtl8188e_free_hal_data(struct adapter *padapter) ...@@ -123,7 +123,7 @@ static void rtl8188e_free_hal_data(struct adapter *padapter)
padapter->HalData = NULL; padapter->HalData = NULL;
} }
static void ReadChipVersion8188E(struct adapter *padapter) void rtw_hal_read_chip_version(struct adapter *padapter)
{ {
u32 value32; u32 value32;
struct HAL_VERSION ChipVersion; struct HAL_VERSION ChipVersion;
...@@ -190,8 +190,6 @@ void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc) ...@@ -190,8 +190,6 @@ void rtl8188e_set_hal_ops(struct hal_ops *pHalFunc)
pHalFunc->free_hal_data = &rtl8188e_free_hal_data; pHalFunc->free_hal_data = &rtl8188e_free_hal_data;
pHalFunc->dm_init = &rtl8188e_init_dm_priv; pHalFunc->dm_init = &rtl8188e_init_dm_priv;
pHalFunc->read_chip_version = &ReadChipVersion8188E;
} }
/* */ /* */
......
...@@ -143,7 +143,6 @@ struct hal_ops { ...@@ -143,7 +143,6 @@ struct hal_ops {
void (*free_hal_data)(struct adapter *padapter); void (*free_hal_data)(struct adapter *padapter);
void (*dm_init)(struct adapter *padapter); void (*dm_init)(struct adapter *padapter);
void (*read_chip_version)(struct adapter *padapter);
s32 (*interrupt_handler)(struct adapter *padapter); s32 (*interrupt_handler)(struct adapter *padapter);
......
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