summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/led.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-01 18:09:41 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-01 18:09:41 +0000
commit9e0fabfc7b33f318e53c37f8b6827bd80fe3a2b8 (patch)
tree2faa9f822e2b65400ce894bd0e5ffd4a3954c589 /sys/arch/sparc/dev/led.c
parent237ac1f04594df5623272a25f5254ad0bd9bfe8d (diff)
make this more like a real cylon mode (no pauses at the end!)
Diffstat (limited to 'sys/arch/sparc/dev/led.c')
-rw-r--r--sys/arch/sparc/dev/led.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/led.c b/sys/arch/sparc/dev/led.c
index 10b7bde68cc..209d5e587c2 100644
--- a/sys/arch/sparc/dev/led.c
+++ b/sys/arch/sparc/dev/led.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: led.c,v 1.11 2006/03/04 12:38:58 miod Exp $ */
+/* $OpenBSD: led.c,v 1.12 2006/08/01 18:09:40 deraadt Exp $ */
/*
* Copyright (c) 1998 Jason L. Wright (jason@thought.net)
@@ -60,8 +60,8 @@ struct cfdriver led_cd = {
};
static u_int8_t led_pattern[] = {
- 0xff, 0xfe, 0xfd, 0xfb, 0xf7, 0xef, 0xdf, 0xbf, 0x7f,
- 0xff, 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0xfe,
+ 0xfe, 0xfd, 0xfb, 0xf7, 0xef, 0xdf, 0xbf, 0x7f,
+ 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
};
struct led_softc *led_sc = NULL;