diff options
| author | Jon Schindler <jkschind@gmail.com> | 2008-03-05 21:49:21 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-03-05 21:49:21 -0500 |
| commit | 32c9874759651b69e496f89ec9e5e6702f67ffca (patch) | |
| tree | cc726ca42457a9981f0b6133a31512dec4a6b280 /drivers | |
| parent | a4e2acf01a7e5fcd960fc332335ca10313641f4b (diff) | |
drivers/net/appletalk/ltpc.c: replace init_module&cleanup_module with module_init&module_exit
Replaced init_module and cleanup_module with static functions and
module_init/module_exit.
Signed-off-by: Jon Schindler <jkschind@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/appletalk/ltpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c index 6ab2c2d4d673..fef5560bc7a2 100644 --- a/drivers/net/appletalk/ltpc.c +++ b/drivers/net/appletalk/ltpc.c | |||
| @@ -1252,7 +1252,7 @@ module_param(irq, int, 0); | |||
| 1252 | module_param(dma, int, 0); | 1252 | module_param(dma, int, 0); |
| 1253 | 1253 | ||
| 1254 | 1254 | ||
| 1255 | int __init init_module(void) | 1255 | static int __init ltpc_module_init(void) |
| 1256 | { | 1256 | { |
| 1257 | if(io == 0) | 1257 | if(io == 0) |
| 1258 | printk(KERN_NOTICE | 1258 | printk(KERN_NOTICE |
| @@ -1263,6 +1263,7 @@ int __init init_module(void) | |||
| 1263 | return PTR_ERR(dev_ltpc); | 1263 | return PTR_ERR(dev_ltpc); |
| 1264 | return 0; | 1264 | return 0; |
| 1265 | } | 1265 | } |
| 1266 | module_init(ltpc_module_init); | ||
| 1266 | #endif | 1267 | #endif |
| 1267 | 1268 | ||
| 1268 | static void __exit ltpc_cleanup(void) | 1269 | static void __exit ltpc_cleanup(void) |
