# BRCM_VERSION=3
[bcm963xx.git] / kernel / linux / arch / arm / mach-sa1100 / leds-system3.c
1 /*
2  * linux/arch/arm/mach-sa1100/leds-system3.c
3  *
4  * Copyright (C) 2001 Stefan Eletzhofer <stefan.eletzhofer@gmx.de>
5  *
6  * Original (leds-footbridge.c) by Russell King
7  *
8  * $Id: leds-system3.c,v 1.1.1.1 2005/04/29 01:40:40 echo Exp $
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  * $Log: leds-system3.c,v $
15  * Revision 1.1.1.1  2005/04/29 01:40:40  echo
16  * Project for BCMDT_3.0
17  *
18  * Revision 1.1.6.1  2001/12/04 15:19:26  seletz
19  * - merged from linux_2_4_13_ac5_rmk2
20  *
21  * Revision 1.1.4.2  2001/11/19 17:58:53  seletz
22  * - cleanup
23  *
24  * Revision 1.1.4.1  2001/11/16 13:49:54  seletz
25  * - dummy LED support for PT Digital Board
26  *
27  * Revision 1.1.2.1  2001/10/15 16:03:39  seletz
28  * - dummy function
29  *
30  *
31  */
32 #include <linux/init.h>
33
34 #include <asm/hardware.h>
35 #include <asm/leds.h>
36 #include <asm/system.h>
37
38 #include "leds.h"
39
40
41 #define LED_STATE_ENABLED       1
42 #define LED_STATE_CLAIMED       2
43
44 static unsigned int led_state;
45 static unsigned int hw_led_state;
46
47 void system3_leds_event(led_event_t evt)
48 {
49
50         /* TODO: support LEDs */
51 }