summaryrefslogtreecommitdiffstats
path: root/arch/m68k/bvme6000
diff options
context:
space:
mode:
authorChristoph Hellwig2005-09-07 00:16:58 +0200
committerLinus Torvalds2005-09-08 01:57:23 +0200
commit573fc113133e0b0984d2c0090e706c6506661f91 (patch)
tree306e0b5e809e413cb36cbd265d7694f04503044a /arch/m68k/bvme6000
parent[PATCH] remove misleading comment above sys_brk (diff)
downloadkernel-qcow2-linux-573fc113133e0b0984d2c0090e706c6506661f91.tar.gz
kernel-qcow2-linux-573fc113133e0b0984d2c0090e706c6506661f91.tar.xz
kernel-qcow2-linux-573fc113133e0b0984d2c0090e706c6506661f91.zip
[PATCH] move m68k rtc drivers over to initcalls
this gets rid of the last two explicit initializations in misc.c Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/bvme6000')
-rw-r--r--arch/m68k/bvme6000/rtc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/m68k/bvme6000/rtc.c b/arch/m68k/bvme6000/rtc.c
index c6b2a410bf9a..eb63ca6ed94c 100644
--- a/arch/m68k/bvme6000/rtc.c
+++ b/arch/m68k/bvme6000/rtc.c
@@ -14,6 +14,7 @@
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/poll.h>
+#include <linux/module.h>
#include <linux/mc146818rtc.h> /* For struct rtc_time and ioctls, etc */
#include <linux/smp_lock.h>
#include <asm/bvme6000hw.h>
@@ -171,7 +172,7 @@ static struct miscdevice rtc_dev = {
.fops = &rtc_fops
};
-int __init rtc_DP8570A_init(void)
+static int __init rtc_DP8570A_init(void)
{
if (!MACH_IS_BVME6000)
return -ENODEV;
@@ -179,4 +180,4 @@ int __init rtc_DP8570A_init(void)
printk(KERN_INFO "DP8570A Real Time Clock Driver v%s\n", RTC_VERSION);
return misc_register(&rtc_dev);
}
-
+module_init(rtc_DP8570A_init);