watchdog: remove use of __devinit

CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Wim Van Sebroeck <wim@iguana.be>
Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bill Pemberton
2012-11-19 13:21:41 -05:00
committed by Greg Kroah-Hartman
parent 82268714bd
commit 2d991a164a
52 changed files with 72 additions and 72 deletions
+2 -2
View File
@@ -215,7 +215,7 @@ static struct miscdevice cpu5wdt_misc = {
/* init/exit function */
static int __devinit cpu5wdt_init(void)
static int cpu5wdt_init(void)
{
unsigned int val;
int err;
@@ -256,7 +256,7 @@ no_port:
return err;
}
static int __devinit cpu5wdt_init_module(void)
static int cpu5wdt_init_module(void)
{
return cpu5wdt_init();
}