diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1998-06-04 03:49:53 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1998-06-04 03:49:53 +0000 |
commit | 0acba8ce22bbe3733ce30319925ed1c9e82ef28d (patch) | |
tree | af09288ca7e6d056416b8a9473598d49a31e1a8b /sys/arch/pmax/include | |
parent | 308fec6f79d51d402ad9909290686cee89312a18 (diff) |
LED blinker for the back panel leds on the 2100/3100.
Diffstat (limited to 'sys/arch/pmax/include')
-rw-r--r-- | sys/arch/pmax/include/cpu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/pmax/include/cpu.h b/sys/arch/pmax/include/cpu.h index d1fec14aa49..75a88148245 100644 --- a/sys/arch/pmax/include/cpu.h +++ b/sys/arch/pmax/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.7 1998/05/18 00:28:11 millert Exp $ */ +/* $OpenBSD: cpu.h,v 1.8 1998/06/04 03:49:48 jason Exp $ */ /* $NetBSD: cpu.h,v 1.15 1996/03/23 20:28:19 jonathan Exp $ */ /*- @@ -152,11 +152,13 @@ union cpuprid { * CTL_MACHDEP definitions. */ #define CPU_CONSDEV 1 /* dev_t: console terminal device */ -#define CPU_MAXID 2 /* number of valid machdep ids */ +#define CPU_LED_BLINK 2 +#define CPU_MAXID 3 /* number of valid machdep ids */ #define CTL_MACHDEP_NAMES { \ { 0, 0 }, \ { "console_device", CTLTYPE_STRUCT }, \ + { "led_blink", CTLTYPE_INT }, \ } |