rtc-no.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Stub RTC routines to keep Linux from crashing on machine which don't
  7.  * have a RTC chip.
  8.  *
  9.  * Copyright (C) 1998, 2001 by Ralf Baechle
  10.  */
  11. #include <linux/kernel.h>
  12. #include <linux/mc146818rtc.h>
  13. static unsigned int shouldnt_happen(void)
  14. {
  15. static int called;
  16. if (!called) {
  17. called = 1;
  18. printk(KERN_DEBUG "RTC functions called - shouldn't happenn");
  19. }
  20. return 0;
  21. }
  22. struct rtc_ops no_rtc_ops = {
  23.     rtc_read_data:  (void *) &shouldnt_happen,
  24.     rtc_write_data: (void *) &shouldnt_happen,
  25.     rtc_bcd_mode:   (void *) &shouldnt_happen
  26. };