diff options
author | Andres Salomon <dilinger@debian.org> | 2007-11-20 17:43:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:04:50 -0500 |
commit | 4fb910fd3ada36cd9fbf6e037b87f2a83fd740b7 (patch) | |
tree | 22074ec5148e1ac9f4a4ed194b20b0c5da3a9f91 /drivers/net/wireless/libertas/main.c | |
parent | 82209adcb157e5861f2105d1658f1f07f75d69f2 (diff) |
libertas: mark module_init/exit functions as __init/__exit
Signed-off-by: Andres Salomon <dilinger@debian.org>
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/main.c')
-rw-r--r-- | drivers/net/wireless/libertas/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/libertas/main.c b/drivers/net/wireless/libertas/main.c index 825970af3419..f0da18c331db 100644 --- a/drivers/net/wireless/libertas/main.c +++ b/drivers/net/wireless/libertas/main.c | |||
@@ -1510,7 +1510,7 @@ int lbs_reset_device(lbs_private *priv) | |||
1510 | } | 1510 | } |
1511 | EXPORT_SYMBOL_GPL(lbs_reset_device); | 1511 | EXPORT_SYMBOL_GPL(lbs_reset_device); |
1512 | 1512 | ||
1513 | static int lbs_init_module(void) | 1513 | static int __init lbs_init_module(void) |
1514 | { | 1514 | { |
1515 | lbs_deb_enter(LBS_DEB_MAIN); | 1515 | lbs_deb_enter(LBS_DEB_MAIN); |
1516 | lbs_debugfs_init(); | 1516 | lbs_debugfs_init(); |
@@ -1518,7 +1518,7 @@ static int lbs_init_module(void) | |||
1518 | return 0; | 1518 | return 0; |
1519 | } | 1519 | } |
1520 | 1520 | ||
1521 | static void lbs_exit_module(void) | 1521 | static void __exit lbs_exit_module(void) |
1522 | { | 1522 | { |
1523 | lbs_deb_enter(LBS_DEB_MAIN); | 1523 | lbs_deb_enter(LBS_DEB_MAIN); |
1524 | 1524 | ||