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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/mach-s3c2410/leds.c
  3.  *
  4.  * Based on linux/arch/arm/mach-sa1100/leds.c
  5.  *
  6.  * This code is GPL.
  7.  *
  8.  * 2002-10-02: Janghoon Lyu <nandy@mizi.com>
  9.  */
  10. #include <linux/init.h>
  11. #include <asm/leds.h>
  12. #include <asm/mach-types.h>
  13. #include "leds.h"
  14. static int __init
  15. s3c2410_leds_init(void)
  16. {
  17. if (machine_is_smdk2410())
  18. leds_event = smdk_leds_event;
  19. leds_event(led_start);
  20. return 0;
  21. }
  22. __initcall(s3c2410_leds_init);