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 char no_rtc_read_data(unsigned long addr)
  14. {
  15. panic("no_rtc_read_data called - shouldn't happen.");
  16. }
  17. static void no_rtc_write_data(unsigned char data, unsigned long addr)
  18. {
  19. panic("no_rtc_write_data called - shouldn't happen.");
  20. }
  21. static int no_rtc_bcd_mode(void)
  22. {
  23. panic("no_rtc_bcd_mode called - shouldn't happen.");
  24. }
  25. struct rtc_ops no_rtc_ops = {
  26. &no_rtc_read_data,
  27. &no_rtc_write_data,
  28. &no_rtc_bcd_mode
  29. };