rtc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/mips/philips/nino/rtc.c
  3.  *
  4.  *  Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com)
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Functions to access RTC on the Philips Nino.
  11.  */
  12. #include <linux/spinlock.h>
  13. #include <linux/mc146818rtc.h>
  14. static unsigned char nino_rtc_read_data(unsigned long addr)
  15. {
  16. return 0;
  17. }
  18. static void nino_rtc_write_data(unsigned char data, unsigned long addr)
  19. {
  20. }
  21. static int nino_rtc_bcd_mode(void)
  22. {
  23. return 0;
  24. }
  25. struct rtc_ops nino_rtc_ops =
  26. {
  27. &nino_rtc_read_data,
  28. &nino_rtc_write_data,
  29. &nino_rtc_bcd_mode
  30. };