mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 20:33:49 -04:00
staging: r8188eu: rename _ReadAdapterInfo8188EU to rtw_hal_read_chip_info
And remove two one-line wrappers. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
655266d538
commit
61e0c324dc
@@ -25,12 +25,6 @@ void rtw_hal_chip_configure(struct adapter *adapt)
|
||||
adapt->HalFunc.intf_chip_configure(adapt);
|
||||
}
|
||||
|
||||
void rtw_hal_read_chip_info(struct adapter *adapt)
|
||||
{
|
||||
if (adapt->HalFunc.read_adapter_info)
|
||||
adapt->HalFunc.read_adapter_info(adapt);
|
||||
}
|
||||
|
||||
void rtw_hal_read_chip_version(struct adapter *adapt)
|
||||
{
|
||||
if (adapt->HalFunc.read_chip_version)
|
||||
|
||||
@@ -1137,7 +1137,7 @@ static void _ReadRFType(struct adapter *Adapter)
|
||||
haldata->rf_chip = RF_6052;
|
||||
}
|
||||
|
||||
static void _ReadAdapterInfo8188EU(struct adapter *Adapter)
|
||||
void rtw_hal_read_chip_info(struct adapter *Adapter)
|
||||
{
|
||||
unsigned long start = jiffies;
|
||||
|
||||
@@ -2077,7 +2077,6 @@ void rtl8188eu_set_hal_ops(struct adapter *adapt)
|
||||
|
||||
halfunc->init_default_value = &rtl8188eu_init_default_value;
|
||||
halfunc->intf_chip_configure = &rtl8188eu_interface_configure;
|
||||
halfunc->read_adapter_info = &_ReadAdapterInfo8188EU;
|
||||
|
||||
rtl8188e_set_hal_ops(halfunc);
|
||||
}
|
||||
|
||||
@@ -164,8 +164,6 @@ struct hal_ops {
|
||||
|
||||
void (*intf_chip_configure)(struct adapter *padapter);
|
||||
|
||||
void (*read_adapter_info)(struct adapter *padapter);
|
||||
|
||||
s32 (*interrupt_handler)(struct adapter *padapter);
|
||||
|
||||
void (*set_bwmode_handler)(struct adapter *padapter,
|
||||
|
||||
Reference in New Issue
Block a user