2 * linux/arch/arm/mach-epxa10db/time.c
4 * Copyright (C) 2000 Deep Blue Solutions
5 * Copyright (C) 2001 Altera Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
14 #include <asm/hardware.h>
17 extern int (*set_rtc)(void);
19 static int epxa10db_set_rtc(void)
24 static int epxa10db_rtc_init(void)
26 set_rtc = epxa10db_set_rtc;
31 __initcall(epxa10db_rtc_init);