Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205931
b: refs/heads/master
c: 67db393
h: refs/heads/master
i:
  205929: 938fb9d
  205927: 44def04
v: v3
  • Loading branch information
Florian Schilhabel authored and Greg Kroah-Hartman committed Jul 22, 2010
1 parent 3662868 commit f0b11ef
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1da45703f6d54c29679d32818a9a1588ae090956
refs/heads/master: 67db39324f6fcc8dc2a286bc8881be1016c8dc29
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192su/ieee80211/ieee80211_crypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ static struct ieee80211_crypto_ops ieee80211_crypt_null = {
.owner = THIS_MODULE,
};

int __init ieee80211_crypto_init(void)
int ieee80211_crypto_init(void)
{
int ret = -ENOMEM;

Expand All @@ -220,7 +220,7 @@ int __init ieee80211_crypto_init(void)
return ret;
}

void __exit ieee80211_crypto_deinit(void)
void ieee80211_crypto_deinit(void)
{
struct list_head *ptr, *n;
struct ieee80211_crypto_alg *alg = NULL;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ int __init ieee80211_crypto_ccmp_init(void)
return ieee80211_register_crypto_ops(&ieee80211_crypt_ccmp);
}

void __exit ieee80211_crypto_ccmp_exit(void)
void ieee80211_crypto_ccmp_exit(void)
{
ieee80211_unregister_crypto_ops(&ieee80211_crypt_ccmp);
}
Original file line number Diff line number Diff line change
Expand Up @@ -755,12 +755,12 @@ static struct ieee80211_crypto_ops ieee80211_crypt_tkip = {
.owner = THIS_MODULE,
};

int __init ieee80211_crypto_tkip_init(void)
int ieee80211_crypto_tkip_init(void)
{
return ieee80211_register_crypto_ops(&ieee80211_crypt_tkip);
}

void __exit ieee80211_crypto_tkip_exit(void)
void ieee80211_crypto_tkip_exit(void)
{
ieee80211_unregister_crypto_ops(&ieee80211_crypt_tkip);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,12 @@ static struct ieee80211_crypto_ops ieee80211_crypt_wep = {
.owner = THIS_MODULE,
};

int __init ieee80211_crypto_wep_init(void)
int ieee80211_crypto_wep_init(void)
{
return ieee80211_register_crypto_ops(&ieee80211_crypt_wep);
}

void __exit ieee80211_crypto_wep_exit(void)
void ieee80211_crypto_wep_exit(void)
{
ieee80211_unregister_crypto_ops(&ieee80211_crypt_wep);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static int store_debug_level(struct file *file, const char *buffer,
return strnlen(buf, count);
}

int __init ieee80211_debug_init(void)
int ieee80211_debug_init(void)
{
struct proc_dir_entry *e;

Expand All @@ -286,7 +286,7 @@ int __init ieee80211_debug_init(void)
return 0;
}

void __exit ieee80211_debug_exit(void)
void ieee80211_debug_exit(void)
{
if (ieee80211_proc) {
remove_proc_entry("debug_level", ieee80211_proc);
Expand Down

0 comments on commit f0b11ef

Please sign in to comment.