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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-mx1ads/cpu.c
  3.  *
  4.  *  Copyright (C) 2001 Deep Blue Solutions Ltd.
  5.  *
  6.  *  $Id: cpu.c,v 1.2 2001/09/22 12:11:17 rmk Exp $
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  *
  12.  * CPU support functions
  13.  */
  14. /*  FIXME-
  15.  *  Add support for clock change on the fly.  (Power)
  16.  *
  17.  */
  18. #include <linux/config.h>
  19. #include <linux/types.h>
  20. #include <linux/kernel.h>
  21. #include <linux/cpufreq.h>
  22. #include <linux/init.h>
  23. #include <asm/hardware.h>
  24. #include <asm/io.h>
  25. static int __init cpu_init(void)
  26. {
  27. return 0;
  28. }
  29. __initcall(cpu_init);