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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-epxa10db/time.c
  3.  *
  4.  *  Copyright (C) 2000 Deep Blue Solutions
  5.  *  Copyright (C) 2001 Altera Corporation
  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. extern int (*set_rtc)(void);
  16. static int epxa10db_set_rtc(void)
  17. {
  18. return 1;
  19. }
  20. static int epxa10db_rtc_init(void)
  21. {
  22. set_rtc = epxa10db_set_rtc;
  23. return 0;
  24. }
  25. __initcall(epxa10db_rtc_init);