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

From: Adrian Bunk
Date: Sat Apr 15 2006 - 15:50:41 EST


This patch:
- converts the driver to use module_{init,exit}
- let the driver print a warning if the old __setup is used

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

drivers/char/applicom.c | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)

--- linux-2.6.17-rc1-mm2-full/drivers/char/applicom.c.old 2006-04-15 21:19:31.000000000 +0200
+++ linux-2.6.17-rc1-mm2-full/drivers/char/applicom.c 2006-04-15 21:23:36.000000000 +0200
@@ -166,11 +166,7 @@ static int ac_register_board(unsigned lo
return boardno + 1;
}

-#ifdef MODULE
-
-#define applicom_init init_module
-
-void cleanup_module(void)
+static void __exit applicom_exit(void)
{
unsigned int i;

@@ -188,9 +184,7 @@ void cleanup_module(void)
}
}

-#endif /* MODULE */
-
-int __init applicom_init(void)
+static int __init applicom_init(void)
{
int i, numisa = 0;
struct pci_dev *dev = NULL;
@@ -358,10 +352,9 @@ out:
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)
{
@@ -870,6 +863,8 @@ static int __init applicom_setup(char *s
return 0;
}

+ printk(KERN_WARNING "applicom= is deprecated\n please use applicom.irq= and applicom.mem=\n");
+
mem = ints[1];
irq = ints[2];
return 1;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/