lib80211: remove exports for functions not called by other modules
Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
c027ed4cea
commit
9d630c7796
@@ -41,6 +41,11 @@ struct lib80211_crypto_alg {
|
||||
static LIST_HEAD(lib80211_crypto_algs);
|
||||
static DEFINE_SPINLOCK(lib80211_crypto_lock);
|
||||
|
||||
static void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info,
|
||||
int force);
|
||||
static void lib80211_crypt_quiescing(struct lib80211_crypt_info *info);
|
||||
static void lib80211_crypt_deinit_handler(unsigned long data);
|
||||
|
||||
const char *print_ssid(char *buf, const char *ssid, u8 ssid_len)
|
||||
{
|
||||
const char *s = ssid;
|
||||
@@ -111,7 +116,8 @@ void lib80211_crypt_info_free(struct lib80211_crypt_info *info)
|
||||
}
|
||||
EXPORT_SYMBOL(lib80211_crypt_info_free);
|
||||
|
||||
void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info, int force)
|
||||
static void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info,
|
||||
int force)
|
||||
{
|
||||
struct lib80211_crypt_data *entry, *next;
|
||||
unsigned long flags;
|
||||
@@ -131,10 +137,9 @@ void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info, int force)
|
||||
}
|
||||
spin_unlock_irqrestore(info->lock, flags);
|
||||
}
|
||||
EXPORT_SYMBOL(lib80211_crypt_deinit_entries);
|
||||
|
||||
/* After this, crypt_deinit_list won't accept new members */
|
||||
void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
||||
static void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
@@ -142,9 +147,8 @@ void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
||||
info->crypt_quiesced = 1;
|
||||
spin_unlock_irqrestore(info->lock, flags);
|
||||
}
|
||||
EXPORT_SYMBOL(lib80211_crypt_quiescing);
|
||||
|
||||
void lib80211_crypt_deinit_handler(unsigned long data)
|
||||
static void lib80211_crypt_deinit_handler(unsigned long data)
|
||||
{
|
||||
struct lib80211_crypt_info *info = (struct lib80211_crypt_info *)data;
|
||||
unsigned long flags;
|
||||
@@ -160,7 +164,6 @@ void lib80211_crypt_deinit_handler(unsigned long data)
|
||||
}
|
||||
spin_unlock_irqrestore(info->lock, flags);
|
||||
}
|
||||
EXPORT_SYMBOL(lib80211_crypt_deinit_handler);
|
||||
|
||||
void lib80211_crypt_delayed_deinit(struct lib80211_crypt_info *info,
|
||||
struct lib80211_crypt_data **crypt)
|
||||
|
Reference in New Issue
Block a user