summaryrefslogtreecommitdiffstats
path: root/include/asm-arm/leds.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
commitdcec8a13bf565e47942a1751a9cec21bec5648fe (patch)
tree548b69625b18cc2e88c3e68d0923be546c9ebb03 /include/asm-arm/leds.h
parent2e0f55e79c49509b7ff70ff1a10e1e9e90a3dfd4 (diff)
o Merge with Linux 2.1.99.
o Fix ancient bug in the ELF loader making ldd crash. o Fix ancient bug in the keyboard code for SGI, SNI and Jazz.
Diffstat (limited to 'include/asm-arm/leds.h')
-rw-r--r--include/asm-arm/leds.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/asm-arm/leds.h b/include/asm-arm/leds.h
new file mode 100644
index 000000000..d253e2abf
--- /dev/null
+++ b/include/asm-arm/leds.h
@@ -0,0 +1,20 @@
+/*
+ * include/asm-arm/leds.h
+ *
+ * Copyright (C) 1998 Russell King
+ *
+ * Event-driven interface for LEDs on machines
+ */
+#ifndef ASM_ARM_LEDS_H
+#define ASM_ARM_LEDS_H
+
+typedef enum {
+ led_idle_start,
+ led_idle_end,
+ led_timer
+} led_event_t;
+
+/* Use this routine to handle LEDs */
+extern void leds_event(led_event_t);
+
+#endif