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 | |
parent | 26c655e3cf5616d6dec0c7bdef43312aff093c90 (diff) |
These devices are DV_DULL, not DV_IFNET... not that it really matters.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/dev/flash.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/dev/led.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/dev/scf.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/dev/xbox.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/sparc/dev/flash.c b/sys/arch/sparc/dev/flash.c index 5d1bee04691..5f3611f9440 100644 --- a/sys/arch/sparc/dev/flash.c +++ b/sys/arch/sparc/dev/flash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: flash.c,v 1.3 2003/06/02 18:40:59 jason Exp $ */ +/* $OpenBSD: flash.c,v 1.4 2006/03/04 12:38:58 miod Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -75,7 +75,7 @@ struct cfattach flash_ca = { }; struct cfdriver flash_cd = { - NULL, "flash", DV_IFNET + NULL, "flash", DV_DULL }; int 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[] = { diff --git a/sys/arch/sparc/dev/scf.c b/sys/arch/sparc/dev/scf.c index dc79a370fe2..4c3780fc33a 100644 --- a/sys/arch/sparc/dev/scf.c +++ b/sys/arch/sparc/dev/scf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scf.c,v 1.8 2006/02/22 22:31:49 miod Exp $ */ +/* $OpenBSD: scf.c,v 1.9 2006/03/04 12:38:58 miod Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -72,7 +72,7 @@ struct cfattach scf_ca = { }; struct cfdriver scf_cd = { - NULL, "scf", DV_IFNET + NULL, "scf", DV_DULL }; extern int sparc_led_blink; diff --git a/sys/arch/sparc/dev/xbox.c b/sys/arch/sparc/dev/xbox.c index 4bca30538c5..35ae3a2b313 100644 --- a/sys/arch/sparc/dev/xbox.c +++ b/sys/arch/sparc/dev/xbox.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xbox.c,v 1.3 2003/06/02 18:40:59 jason Exp $ */ +/* $OpenBSD: xbox.c,v 1.4 2006/03/04 12:38:58 miod Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -58,7 +58,7 @@ struct cfattach xbox_ca = { }; struct cfdriver xbox_cd = { - NULL, "xbox", DV_IFNET + NULL, "xbox", DV_DULL }; int |