2 * linux/arch/arm/mach-pxa/leds.c
4 * xscale LEDs dispatcher
6 * Copyright (C) 2001 Nicolas Pitre
8 * Copyright (c) 2001 Jeff Sutherland, Accelent Systems Inc.
10 #include <linux/compiler.h>
11 #include <linux/init.h>
14 #include <asm/mach-types.h>
21 if (machine_is_lubbock())
22 leds_event = lubbock_leds_event;
23 if (machine_is_mainstone())
24 leds_event = mainstone_leds_event;
25 if (machine_is_pxa_idp())
26 leds_event = idp_leds_event;
28 leds_event(led_start);
32 core_initcall(pxa_leds_init);