MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / arm / mach-s3c24a0 / leds.c
blobda3e721bc1f27b42957a419dd0611c856e708899
1 /*
2 * /arch/arm/mach-s3c24a0/leds.c
4 * $Id: leds.c,v 1.2 2005/11/28 03:55:09 gerg Exp $
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 */
11 #include <linux/init.h>
13 #include <asm/leds.h>
14 #include <asm/mach-types.h>
16 #include "leds.h"
18 static int __init
19 s3c24a0_leds_init(void)
21 #ifdef CONFIG_BOARD_SMDK24A0
22 if (machine_is_s3c24a0())
23 leds_event = smdk_leds_event;
24 #endif
26 leds_event(led_start);
27 return 0;
30 __initcall(s3c24a0_leds_init);