Commit 2e611390 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] drivers/char/applicom.c: proper module_{init,exit}

Convert the driver to use module_{init,exit}.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Acked-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 59cc185a
...@@ -166,11 +166,7 @@ static int ac_register_board(unsigned long physloc, void __iomem *loc, ...@@ -166,11 +166,7 @@ static int ac_register_board(unsigned long physloc, void __iomem *loc,
return boardno + 1; return boardno + 1;
} }
#ifdef MODULE static void __exit applicom_exit(void)
#define applicom_init init_module
void cleanup_module(void)
{ {
unsigned int i; unsigned int i;
...@@ -188,9 +184,7 @@ void cleanup_module(void) ...@@ -188,9 +184,7 @@ void cleanup_module(void)
} }
} }
#endif /* MODULE */ static int __init applicom_init(void)
int __init applicom_init(void)
{ {
int i, numisa = 0; int i, numisa = 0;
struct pci_dev *dev = NULL; struct pci_dev *dev = NULL;
...@@ -355,10 +349,9 @@ int __init applicom_init(void) ...@@ -355,10 +349,9 @@ int __init applicom_init(void)
return ret; return ret;
} }
module_init(applicom_init);
module_exit(applicom_exit);
#ifndef MODULE
__initcall(applicom_init);
#endif
static ssize_t ac_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos) static ssize_t ac_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
{ {
...@@ -851,28 +844,3 @@ static int ac_ioctl(struct inode *inode, struct file *file, unsigned int cmd, un ...@@ -851,28 +844,3 @@ static int ac_ioctl(struct inode *inode, struct file *file, unsigned int cmd, un
return 0; return 0;
} }
#ifndef MODULE
static int __init applicom_setup(char *str)
{
int ints[4];
(void) get_options(str, 4, ints);
if (ints[0] > 2) {
printk(KERN_WARNING "Too many arguments to 'applicom=', expected mem,irq only.\n");
}
if (ints[0] < 2) {
printk(KERN_INFO"applicom numargs: %d\n", ints[0]);
return 0;
}
mem = ints[1];
irq = ints[2];
return 1;
}
__setup("applicom=", applicom_setup);
#endif /* MODULE */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment