mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
staging: rtl8723bs: rename ReadAdapterInfo8723BS() to snake_case
Rename function ReadAdapterInfo8723BS() to rtw_read_adapter_info() to comply with Linux kernel coding style and fix checkpatch.pl warning. Signed-off-by: Nikolay Kulikov <nikolayof23@gmail.com> Link: https://patch.msgid.link/20260419072034.19824-10-nikolayof23@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
330ece18af
commit
629af58ab8
|
|
@ -1089,7 +1089,7 @@ static s32 _ReadAdapterInfo8723BS(struct adapter *padapter)
|
|||
return _SUCCESS;
|
||||
}
|
||||
|
||||
void ReadAdapterInfo8723BS(struct adapter *padapter)
|
||||
void rtw_read_adapter_info(struct adapter *padapter)
|
||||
{
|
||||
/* Read EEPROM size before call any EEPROM function */
|
||||
padapter->EepromAddressSize = GetEEPROMSize8723B(padapter);
|
||||
|
|
|
|||
|
|
@ -90,6 +90,6 @@ void rtl8723b_process_phy_info(struct adapter *padapter, void *prframe);
|
|||
void rtl8723b_read_chip_version(struct adapter *padapter);
|
||||
void rtl8723bs_init_default_value(struct adapter *padapter);
|
||||
void rtl8723bs_interface_configure(struct adapter *padapter);
|
||||
void ReadAdapterInfo8723BS(struct adapter *padapter);
|
||||
void rtw_read_adapter_info(struct adapter *padapter);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -270,7 +270,7 @@ static struct adapter *rtw_sdio_if1_init(struct dvobj_priv *dvobj, const struct
|
|||
hal_btcoex_Initialize((void *)padapter);
|
||||
|
||||
/* 3 6. read efuse/eeprom data */
|
||||
ReadAdapterInfo8723BS(padapter);
|
||||
rtw_read_adapter_info(padapter);
|
||||
|
||||
/* 3 7. init driver common data */
|
||||
if (rtw_init_drv_sw(padapter) == _FAIL)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user