diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-04 12:39:00 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-04 12:39:00 +0000 |
commit | 95f5083a90a3231564f7f275a1e2c2b4ee8b9936 (patch) | |
tree | e61f1cc18e6eef90933a274efcbe3d03e1580245 /sys/arch/sparc/dev/led.c | |
parent | 26c655e3cf5616d6dec0c7bdef43312aff093c90 (diff) |
These devices are DV_DULL, not DV_IFNET... not that it really matters.
Diffstat (limited to 'sys/arch/sparc/dev/led.c')
-rw-r--r-- | sys/arch/sparc/dev/led.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/led.c b/sys/arch/sparc/dev/led.c index e4591ec1e9b..10b7bde68cc 100644 --- a/sys/arch/sparc/dev/led.c +++ b/sys/arch/sparc/dev/led.c @@ -1,4 +1,4 @@ -/* $OpenBSD: led.c,v 1.10 2003/06/02 18:40:59 jason Exp $ */ +/* $OpenBSD: led.c,v 1.11 2006/03/04 12:38:58 miod Exp $ */ /* * Copyright (c) 1998 Jason L. Wright (jason@thought.net) @@ -56,7 +56,7 @@ struct cfattach led_ca = { }; struct cfdriver led_cd = { - NULL, "led", DV_IFNET + NULL, "led", DV_DULL }; static u_int8_t led_pattern[] = { |