mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 07:29:40 +00:00
rtl8188eu: Fix Fix Sparse warning in os_dep/os_intfs.c
Sparse issues the following: CHECK /home/finger/rtl8188eu/os_dep/os_intfs.c /home/finger/rtl8188eu/os_dep/os_intfs.c:647:4: warning: symbol 'rtw_init_default_value' was not declared. Should it be static? Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
c8bd30ee46
commit
76682b1874
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ void rtw_stop_drv_threads (struct adapter *padapter)
|
|||
rtw_hal_stop_thread(padapter);
|
||||
}
|
||||
|
||||
u8 rtw_init_default_value(struct adapter *padapter)
|
||||
static u8 rtw_init_default_value(struct adapter *padapter)
|
||||
{
|
||||
u8 ret = _SUCCESS;
|
||||
struct registry_priv* pregistrypriv = &padapter->registrypriv;
|
||||
|
|
Loading…
Reference in a new issue