patch-2.4.25 linux-2.4.25/arch/mips64/lib/rtc-no.c
Next file: linux-2.4.25/arch/mips64/lib/rtc-std.c
Previous file: linux-2.4.25/arch/mips64/lib/Makefile
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
2004-02-18 05:36:30.000000000 -0800
- Orig file:
linux-2.4.24/arch/mips64/lib/rtc-no.c
- Orig date:
2001-07-04 11:50:39.000000000 -0700
diff -urN linux-2.4.24/arch/mips64/lib/rtc-no.c linux-2.4.25/arch/mips64/lib/rtc-no.c
@@ -9,25 +9,25 @@
* Copyright (C) 1998, 2001 by Ralf Baechle
*/
#include <linux/kernel.h>
+#include <linux/module.h>
#include <linux/mc146818rtc.h>
-static unsigned char no_rtc_read_data(unsigned long addr)
+static unsigned int shouldnt_happen(void)
{
- panic("no_rtc_read_data called - shouldn't happen.");
-}
+ static int called;
-static void no_rtc_write_data(unsigned char data, unsigned long addr)
-{
- panic("no_rtc_write_data called - shouldn't happen.");
-}
+ if (!called) {
+ called = 1;
+ printk(KERN_DEBUG "RTC functions called - shouldn't happen\n");
+ }
-static int no_rtc_bcd_mode(void)
-{
- panic("no_rtc_bcd_mode called - shouldn't happen.");
+ return 0;
}
struct rtc_ops no_rtc_ops = {
- &no_rtc_read_data,
- &no_rtc_write_data,
- &no_rtc_bcd_mode
+ .rtc_read_data = (void *) &shouldnt_happen,
+ .rtc_write_data = (void *) &shouldnt_happen,
+ .rtc_bcd_mode = (void *) &shouldnt_happen
};
+
+EXPORT_SYMBOL(rtc_ops);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)