mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
staging/rtl8187se fix sparse complaints
Fix the following sparse complaints: drivers/staging/rtl8187se//ieee80211/ieee80211_crypt.c:201:5: warning: symbol 'ieee80211_crypto_init' was not declared. Should it be static? drivers/staging/rtl8187se//ieee80211/ieee80211_crypt.c:222:6: warning: symbol 'ieee80211_crypto_deinit' was not declared. Should it be static? drivers/staging/rtl8187se//ieee80211/ieee80211_crypt_ccmp.c:446:5: warning: symbol 'ieee80211_crypto_ccmp_init' was not declared. Should it be static? drivers/staging/rtl8187se//ieee80211/ieee80211_crypt_ccmp.c:452:6: warning: symbol 'ieee80211_crypto_ccmp_exit' was not declared. Should it be static? drivers/staging/rtl8187se//ieee80211/ieee80211_crypt_wep.c:264:5: warning: symbol 'ieee80211_crypto_wep_init' was not declared. Should it be static? drivers/staging/rtl8187se//ieee80211/ieee80211_crypt_wep.c:269:6: warning: symbol 'ieee80211_crypto_wep_exit' was not declared. Should it be static? by adding an include file into source files and moving some declarations around into the proper header files. Signed-off-by: Jake Edge <jake@edge2.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
26827c836c
commit
038dcf12b6
@@ -83,4 +83,13 @@ void ieee80211_crypt_deinit_handler(unsigned long);
|
||||
void ieee80211_crypt_delayed_deinit(struct ieee80211_device *ieee,
|
||||
struct ieee80211_crypt_data **crypt);
|
||||
|
||||
/* fun with the built-in ieee80211 stack... */
|
||||
int ieee80211_crypto_init(void);
|
||||
void ieee80211_crypto_deinit(void);
|
||||
int ieee80211_crypto_tkip_init(void);
|
||||
void ieee80211_crypto_tkip_exit(void);
|
||||
int ieee80211_crypto_ccmp_init(void);
|
||||
void ieee80211_crypto_ccmp_exit(void);
|
||||
int ieee80211_crypto_wep_init(void);
|
||||
void ieee80211_crypto_wep_exit(void);
|
||||
#endif
|
||||
|
||||
@@ -629,12 +629,3 @@ bool MgntActSet_RF_State(struct net_device *dev, enum rt_rf_power_state StateToS
|
||||
|
||||
#endif
|
||||
|
||||
/* fun with the built-in ieee80211 stack... */
|
||||
extern int ieee80211_crypto_init(void);
|
||||
extern void ieee80211_crypto_deinit(void);
|
||||
extern int ieee80211_crypto_tkip_init(void);
|
||||
extern void ieee80211_crypto_tkip_exit(void);
|
||||
extern int ieee80211_crypto_ccmp_init(void);
|
||||
extern void ieee80211_crypto_ccmp_exit(void);
|
||||
extern int ieee80211_crypto_wep_init(void);
|
||||
extern void ieee80211_crypto_wep_exit(void);
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
#include "r8180_dm.h"
|
||||
|
||||
#include "ieee80211/dot11d.h"
|
||||
#include "ieee80211/ieee80211_crypt.h"
|
||||
|
||||
static struct pci_device_id rtl8180_pci_id_tbl[] = {
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user