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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-mx1ads/time.c
  3.  *
  4.  *  Copyright (C) 2000-2001 Deep Blue Solutions
  5.  *  Copyright (C) 2002 Shane Nay (shane@minirl.com)
  6.  *
  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.
  10.  */
  11. #include <linux/kernel.h>
  12. #include <linux/sched.h>
  13. #include <linux/init.h>
  14. #include <asm/hardware.h>
  15. #include <asm/io.h>
  16. extern int (*set_rtc)(void);
  17. /* FIXME-
  18.  * When we have an external RTC part,
  19.  * put the mapping in for that part.
  20.  *
  21.  * The internal RTC within the MX1 is not sufficient
  22.  * for tracking time other than time of day, or
  23.  * date over very short periods of time.
  24.  *
  25.  */
  26. static int mx1ads_set_rtc(void)
  27. {
  28. return 0;
  29. }
  30. static int mx1ads_rtc_init(void)
  31. {
  32. xtime.tv_sec = 0;
  33. set_rtc = mx1ads_set_rtc;
  34. return 0;
  35. }
  36. __initcall(mx1ads_rtc_init);