From owner-newconfig-jp@jp.freebsd.org  Wed Jan  6 15:45:55 1999
Received: (from daemon@localhost)
	by jaz.jp.freebsd.org (8.9.1+3.1W/8.7.3) id PAA27509;
	Wed, 6 Jan 1999 15:45:55 +0900 (JST)
	(envelope-from owner-newconfig-jp@jp.FreeBSD.org)
Received: from ann.hi-ho.ne.jp (root@ann.hi-ho.ne.jp [202.224.128.125])
	by jaz.jp.freebsd.org (8.9.1+3.1W/8.7.3) with ESMTP id PAA27501
	for <newconfig-jp@jp.freebsd.org>; Wed, 6 Jan 1999 15:45:53 +0900 (JST)
	(envelope-from kanaoka@ann.hi-ho.ne.jp)
Received: from localhost (bluerobin.mke.co.jp [210.130.252.139])
	by ann.hi-ho.ne.jp (8.9.1+3.0W/3.6W:Hi-HO) with ESMTP id PAA17272
	for <newconfig-jp@jp.freebsd.org>; Wed, 6 Jan 1999 15:44:51 +0900 (JST)
To: newconfig-jp@jp.freebsd.org
In-Reply-To: Your message of "Tue, 05 Jan 1999 17:31:35 +0900"
	<19990105173135E.furuta@sra.co.jp>
References: <19990105173135E.furuta@sra.co.jp>
X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA)
Mime-Version: 1.0
Content-Type: Multipart/Mixed;
	boundary="--Next_Part(Wed_Jan__6_15:43:52_1999_41)--"
Content-Transfer-Encoding: 7bit
Message-Id: <19990106154426M.kanaoka@ann.hi-ho.ne.jp>
Date: Wed, 06 Jan 1999 15:44:26 +0900
From: Masanori Kanaoka <kanaoka@ann.hi-ho.ne.jp>
X-Dispatcher: imput version 980905(IM100)
Lines: 1586
Reply-To: newconfig-jp@jp.freebsd.org
Precedence: list
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+981115
X-Sequence: newconfig-jp 832
Subject: [newconfig-jp 832] Re: config_detach
Errors-To: owner-newconfig-jp@jp.freebsd.org
Sender: owner-newconfig-jp@jp.freebsd.org
X-Originator: kanaoka@ann.hi-ho.ne.jp

----Next_Part(Wed_Jan__6_15:43:52_1999_41)--
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit

$B6b2,$G$9!#(B

$B:#G/$b!"$h$m$7$/$G$9!#$J$s$@$+!"A4A3OC$K$D$$$F$$$1$F$$$^$;$s!#(B

$   $B8EED$G$9!#(B

$   $B$3$N$^$^$[$C$H$/$H!"?7$7$/:n6H$9$k?M$,K:$l$A$c$&$G$7$g$&$+$i!"0l5$$K(B
$ $B$3$NJQ99$r$7$F$7$^$C$?J}$,$$$$$s$G$7$g$&$,!D(B

$B$G!"JQ99$7$F$_$^$7$?!#(B

	i386	ELF kernel $B$,$G$-!"F0:n$9$k$3$H(B
	pc98	ELF kernel $B$,$G$-$k$3$H(B

$B$r3NG'$7$^$7$?!#(B
check $B$*4j$$$7$^$9!#LdBj$,$J$$$h$&$G$7$?$i!"(Bcommit $B$7$^$9!#(B

$B!t(B cfattach $B$NMWAG$O!"#7$D$G$9$h$M!#(B

---
 Masanori Kanaoka	kana@saijo.mke.mei.co.jp
			kanaoka@ann.hi-ho.ne.jp


----Next_Part(Wed_Jan__6_15:43:52_1999_41)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=990106.diff

Index: sys/cam/scsi/scsi_all.c
===================================================================
RCS file: /home/cvs/newconfig/sys/cam/scsi/scsi_all.c,v
retrieving revision 1.2
diff -u -r1.2 scsi_all.c
--- scsi_all.c	1998/12/16 06:26:38	1.2
+++ scsi_all.c	1999/01/06 05:22:48
@@ -69,7 +69,7 @@
 };
 
 struct cfattach scbus_ca = {
-	sizeof(struct scbus_softc), 1, NULL,scbus_match,scbus_attach,NULL,
+	sizeof(struct scbus_softc), 1, NULL,scbus_match,scbus_attach,NULL,NULL,
 };
 
 static int
Index: sys/cam/scsi/scsi_cd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/cam/scsi/scsi_cd.c,v
retrieving revision 1.2
diff -u -r1.2 scsi_cd.c
--- scsi_cd.c	1998/12/16 06:26:41	1.2
+++ scsi_cd.c	1999/01/06 05:23:22
@@ -84,7 +84,7 @@
 };
 
 struct cfattach cd_ca = {
-	sizeof(struct cd_nc_softc), 1, NULL, cd_match, cd_attach, NULL,
+	sizeof(struct cd_nc_softc), 1, NULL, cd_match, cd_attach, NULL,NULL,
 };
 
 static int
Index: sys/cam/scsi/scsi_da.c
===================================================================
RCS file: /home/cvs/newconfig/sys/cam/scsi/scsi_da.c,v
retrieving revision 1.2
diff -u -r1.2 scsi_da.c
--- scsi_da.c	1998/12/16 06:26:46	1.2
+++ scsi_da.c	1999/01/06 05:23:40
@@ -68,7 +68,7 @@
 };
  
 struct cfattach da_ca ={
-	sizeof(struct da_nc_softc), 1, NULL, da_match, da_attach, NULL,
+	sizeof(struct da_nc_softc), 1, NULL, da_match, da_attach, NULL,NULL,
 };
 
 static int
Index: sys/cam/scsi/scsi_sa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/cam/scsi/scsi_sa.c,v
retrieving revision 1.2
diff -u -r1.2 scsi_sa.c
--- scsi_sa.c	1998/12/16 06:26:47	1.2
+++ scsi_sa.c	1999/01/06 05:24:05
@@ -71,7 +71,7 @@
 };
 
 struct cfattach sa_ca = {
-	sizeof(struct sa_nc_softc), 1, NULL, sa_match, sa_attach, NULL,
+	sizeof(struct sa_nc_softc), 1, NULL, sa_match, sa_attach, NULL,NULL,
 };
 
 static int
Index: sys/dev/hea/eni.c
===================================================================
RCS file: /home/cvs/newconfig/sys/dev/hea/eni.c,v
retrieving revision 1.2
diff -u -r1.2 eni.c
--- eni.c	1998/12/26 13:07:34	1.2
+++ eni.c	1999/01/06 05:24:53
@@ -84,7 +84,7 @@
 };
 
 struct cfattach eni_pci_ca = {
-        sizeof(struct eni_pci_softc), 1, NULL, eni_pci_match, eni_pci_attach, NULL,
+        sizeof(struct eni_pci_softc), 1, NULL, eni_pci_match, eni_pci_attach, NULL,NULL,
 };
 #else
 static struct pci_device eni_pci_device = {
Index: sys/dev/hfa/fore_load.c
===================================================================
RCS file: /home/cvs/newconfig/sys/dev/hfa/fore_load.c,v
retrieving revision 1.2
diff -u -r1.2 fore_load.c
--- fore_load.c	1998/12/26 13:07:37	1.2
+++ fore_load.c	1999/01/06 05:25:42
@@ -111,7 +111,7 @@
 };
 
 struct cfattach fore_pci_ca = {
-        sizeof(struct fore_pci_softc), 1, NULL, fore_pci_match, fore_pci_attach, NULL,
+        sizeof(struct fore_pci_softc), 1, NULL, fore_pci_match, fore_pci_attach, NULL,NULL,
 };
 #else
 static struct pci_device fore_pci_device = {
Index: sys/gnu/i386/isa/dgb.c
===================================================================
RCS file: /home/cvs/newconfig/sys/gnu/i386/isa/dgb.c,v
retrieving revision 1.2
diff -u -r1.2 dgb.c
--- dgb.c	1998/12/26 13:07:41	1.2
+++ dgb.c	1999/01/06 05:58:37
@@ -223,7 +223,7 @@
 };
 
 struct cfattach dgb_isa_ca = {
-        sizeof(struct dgb_isa_softc), 0, &dgbdriver, isa_dev_match, NULL,
+        sizeof(struct dgb_isa_softc), 0, &dgbdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/gnu/i386/isa/dgm.c
===================================================================
RCS file: /home/cvs/newconfig/sys/gnu/i386/isa/dgm.c,v
retrieving revision 1.2
diff -u -r1.2 dgm.c
--- dgm.c	1998/12/26 13:07:42	1.2
+++ dgm.c	1999/01/06 05:59:07
@@ -228,7 +228,7 @@
 };
 
 struct cfattach dgm_isa_ca = {
-        sizeof(struct dgm_isa_softc), 0, &dgmdriver, isa_dev_match, NULL,
+        sizeof(struct dgm_isa_softc), 0, &dgmdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/apm/apm.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/apm/apm.c,v
retrieving revision 1.4
diff -u -r1.4 apm.c
--- apm.c	1998/12/01 15:25:50	1.4
+++ apm.c	1999/01/06 05:26:47
@@ -634,7 +634,7 @@
 };
 
 struct cfattach apm_ca = {
-	sizeof(struct apm_isa_softc), 0, &apmdriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct apm_isa_softc), 0, &apmdriver, isa_dev_match, NULL, NULL,NULL,
 };
 #endif /* NEW_CONFIG */
 
Index: sys/i386/isa/adv_isa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/adv_isa.c,v
retrieving revision 1.2
diff -u -r1.2 adv_isa.c
--- adv_isa.c	1998/12/21 01:52:09	1.2
+++ adv_isa.c	1999/01/06 05:28:49
@@ -117,7 +117,7 @@
 };
 
 struct cfattach adv_isa_ca = {
-	sizeof(struct adv_isa_softc), 0, &advdriver, isa_dev_match, NULL,
+	sizeof(struct adv_isa_softc), 0, &advdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/aha_isa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/aha_isa.c,v
retrieving revision 1.2
diff -u -r1.2 aha_isa.c
--- aha_isa.c	1998/12/21 01:52:10	1.2
+++ aha_isa.c	1999/01/06 05:29:26
@@ -62,7 +62,7 @@
 };
 
 struct cfattach aha_isa_ca = {
-	sizeof(struct aha_isa_softc), 0, &ahadriver, isa_dev_match, NULL,
+	sizeof(struct aha_isa_softc), 0, &ahadriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/alog.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/alog.c,v
retrieving revision 1.2
diff -u -r1.2 alog.c
--- alog.c	1998/12/26 13:07:47	1.2
+++ alog.c	1999/01/06 05:29:55
@@ -222,7 +222,7 @@
 };
 
 struct cfattach alog_ca = {
-        sizeof(struct alog_softc), 0, &alogdriver, isa_dev_match, NULL,
+        sizeof(struct alog_softc), 0, &alogdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/asc.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/asc.c,v
retrieving revision 1.2
diff -u -r1.2 asc.c
--- asc.c	1998/12/26 13:07:48	1.2
+++ asc.c	1999/01/06 05:30:18
@@ -197,7 +197,7 @@
 };
 
 struct cfattach asc_ca = {
-        sizeof(struct asc_softc), 0, &ascdriver, isa_dev_match, NULL,
+        sizeof(struct asc_softc), 0, &ascdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/b004.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/b004.c,v
retrieving revision 1.2
diff -u -r1.2 b004.c
--- b004.c	1998/12/26 13:07:49	1.2
+++ b004.c	1999/01/06 05:30:39
@@ -119,7 +119,7 @@
 };
 
 struct cfattach bqu_ca = {
-        sizeof(struct bqu_softc), 0, &bqudriver, isa_dev_match, NULL,
+        sizeof(struct bqu_softc), 0, &bqudriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/bt_isa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/bt_isa.c,v
retrieving revision 1.2
diff -u -r1.2 bt_isa.c
--- bt_isa.c	1998/12/21 01:52:11	1.2
+++ bt_isa.c	1999/01/06 05:31:13
@@ -63,7 +63,7 @@
 };
 
 struct cfattach bt_isa_ca = {
-	sizeof(struct bt_isa_softc), 0, &btdriver, isa_dev_match, NULL,
+	sizeof(struct bt_isa_softc), 0, &btdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/ctx.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/ctx.c,v
retrieving revision 1.2
diff -u -r1.2 ctx.c
--- ctx.c	1998/12/26 13:07:50	1.2
+++ ctx.c	1999/01/06 05:31:38
@@ -148,7 +148,7 @@
 };
 
 struct cfattach ctx_ca = {
-        sizeof(struct ctx_softc), 0, &ctxdriver, isa_dev_match, NULL,
+        sizeof(struct ctx_softc), 0, &ctxdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/cy.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/cy.c,v
retrieving revision 1.2
diff -u -r1.2 cy.c
--- cy.c	1998/12/26 13:07:51	1.2
+++ cy.c	1999/01/06 05:32:00
@@ -379,7 +379,7 @@
 };
 
 struct cfattach cy_isa_ca = {
-        sizeof(struct cy_isa_softc), 0, &cydriver, isa_dev_match, NULL,
+        sizeof(struct cy_isa_softc), 0, &cydriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/fd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/fd.c,v
retrieving revision 1.8
diff -u -r1.8 fd.c
--- fd.c	1998/12/31 14:44:12	1.8
+++ fd.c	1999/01/06 05:32:32
@@ -322,7 +322,7 @@
 };
 
 struct cfattach fd_ca = {
-        sizeof(struct fd_softc), 0, NULL, fd_match, fd_attach, NULL,
+        sizeof(struct fd_softc), 0, NULL, fd_match, fd_attach, NULL,NULL,
 };
 
 struct fdc_softc {
@@ -331,7 +331,7 @@
 };
 
 struct cfattach fdc_ca = {
-        sizeof(struct fdc_softc), 1, NULL, fdc_match, fdc_attach, NULL,
+        sizeof(struct fdc_softc), 1, NULL, fdc_match, fdc_attach, NULL,NULL,
 };
 #endif /* NEW_CONFIG */
 
Index: sys/i386/isa/gpib.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/gpib.c,v
retrieving revision 1.2
diff -u -r1.2 gpib.c
--- gpib.c	1998/12/26 13:07:53	1.2
+++ gpib.c	1999/01/06 05:32:59
@@ -78,7 +78,7 @@
 };
 
 struct cfattach gp_ca = {
-        sizeof(struct gp_softc), 0, &gpdriver, isa_dev_match, NULL,
+        sizeof(struct gp_softc), 0, &gpdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/gsc.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/gsc.c,v
retrieving revision 1.2
diff -u -r1.2 gsc.c
--- gsc.c	1998/12/26 13:07:56	1.2
+++ gsc.c	1999/01/06 05:33:29
@@ -193,7 +193,7 @@
 };
 
 struct cfattach gsc_ca = {
-        sizeof(struct gsc_softc), 0, &gscdriver, isa_dev_match, NULL,
+        sizeof(struct gsc_softc), 0, &gscdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ar.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ar.c,v
retrieving revision 1.2
diff -u -r1.2 if_ar.c
--- if_ar.c	1998/12/26 13:07:57	1.2
+++ if_ar.c	1999/01/06 05:33:54
@@ -187,7 +187,7 @@
 };
 
 struct cfattach ar_isa_ca = {
-        sizeof(struct ar_isa_softc), 0, &ardriver, isa_dev_match, NULL,
+        sizeof(struct ar_isa_softc), 0, &ardriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_cs.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_cs.c,v
retrieving revision 1.2
diff -u -r1.2 if_cs.c
--- if_cs.c	1998/12/26 13:07:58	1.2
+++ if_cs.c	1999/01/06 05:34:21
@@ -152,7 +152,7 @@
 };
 
 struct cfattach cs_isa_ca = {
-        sizeof(struct cs_isa_softc), 0, &csdriver, isa_dev_match, NULL,
+        sizeof(struct cs_isa_softc), 0, &csdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_cx.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_cx.c,v
retrieving revision 1.2
diff -u -r1.2 if_cx.c
--- if_cx.c	1998/12/26 13:07:59	1.2
+++ if_cx.c	1999/01/06 05:34:40
@@ -321,7 +321,7 @@
 };
 
 struct cfattach cx_ca = {
-        sizeof(struct cx_softc), 0, &cxdriver, isa_dev_match, NULL,
+        sizeof(struct cx_softc), 0, &cxdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ed.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ed.c,v
retrieving revision 1.8
diff -u -r1.8 if_ed.c
--- if_ed.c	1998/10/07 17:18:50	1.8
+++ if_ed.c	1999/01/06 05:35:45
@@ -303,7 +303,7 @@
 };
 
 struct cfattach ed_ca = {
-	sizeof(struct ed_isa_softc), 0, &eddriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct ed_isa_softc), 0, &eddriver, isa_dev_match, NULL, NULL,NULL,
 };
 #endif
 
@@ -3450,7 +3450,7 @@
 };
 
 struct cfattach ed_pnp_ca = {
-	sizeof(struct ed_pnp_softc), 0, NULL, ed_pnp_match, ed_pnp_attach, NULL, 
+	sizeof(struct ed_pnp_softc), 0, NULL, ed_pnp_match, ed_pnp_attach, NULL,NULL,
 };
 
 static void
Index: sys/i386/isa/if_eg.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_eg.c,v
retrieving revision 1.2
diff -u -r1.2 if_eg.c
--- if_eg.c	1998/12/26 13:08:00	1.2
+++ if_eg.c	1999/01/06 05:36:12
@@ -105,7 +105,7 @@
 };
 
 struct cfattach eg_isa_ca = {
-        sizeof(struct eg_isa_softc), 0, &egdriver, isa_dev_match, NULL,
+        sizeof(struct eg_isa_softc), 0, &egdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_el.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_el.c,v
retrieving revision 1.2
diff -u -r1.2 if_el.c
--- if_el.c	1998/12/26 13:08:01	1.2
+++ if_el.c	1999/01/06 05:36:34
@@ -100,7 +100,7 @@
 };
 
 struct cfattach el_isa_ca = {
-        sizeof(struct el_isa_softc), 0, &eldriver, isa_dev_match, NULL,
+        sizeof(struct el_isa_softc), 0, &eldriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ep.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ep.c,v
retrieving revision 1.4
diff -u -r1.4 if_ep.c
--- if_ep.c	1998/10/07 12:24:11	1.4
+++ if_ep.c	1999/01/06 05:36:57
@@ -149,7 +149,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach ep_ca = {
-	sizeof(struct ep_softc), 0, &epdriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct ep_softc), 0, &epdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ex.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ex.c,v
retrieving revision 1.2
diff -u -r1.2 if_ex.c
--- if_ex.c	1998/12/26 13:08:02	1.2
+++ if_ex.c	1999/01/06 05:37:32
@@ -144,7 +144,7 @@
 };
 
 struct cfattach ex_isa_ca = {
-        sizeof(struct ex_isa_softc), 0, &exdriver, isa_dev_match, NULL,
+        sizeof(struct ex_isa_softc), 0, &exdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_fe.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_fe.c,v
retrieving revision 1.2
diff -u -r1.2 if_fe.c
--- if_fe.c	1998/12/26 13:08:03	1.2
+++ if_fe.c	1999/01/06 05:37:53
@@ -285,7 +285,7 @@
 };
 
 struct cfattach fe_isa_ca = {
-        sizeof(struct fe_isa_softc), 0, &fedriver, isa_dev_match, NULL,
+        sizeof(struct fe_isa_softc), 0, &fedriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ie.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ie.c,v
retrieving revision 1.2
diff -u -r1.2 if_ie.c
--- if_ie.c	1998/12/26 13:08:04	1.2
+++ if_ie.c	1999/01/06 05:38:42
@@ -245,7 +245,7 @@
 };
 
 struct cfattach ie_isa_ca = {
-        sizeof(struct ie_isa_softc), 0, &iedriver, isa_dev_match, NULL,
+        sizeof(struct ie_isa_softc), 0, &iedriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_le.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_le.c,v
retrieving revision 1.2
diff -u -r1.2 if_le.c
--- if_le.c	1998/12/26 13:08:07	1.2
+++ if_le.c	1999/01/06 05:39:01
@@ -278,7 +278,7 @@
 };
 
 struct cfattach le_isa_ca = {
-        sizeof(struct le_isa_softc), 0, &ledriver, isa_dev_match, NULL,
+        sizeof(struct le_isa_softc), 0, &ledriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_lnc.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_lnc.c,v
retrieving revision 1.2
diff -u -r1.2 if_lnc.c
--- if_lnc.c	1998/12/21 01:52:12	1.2
+++ if_lnc.c	1999/01/06 05:39:20
@@ -203,7 +203,7 @@
 };
 
 struct cfattach lnc_isa_ca = {
-	sizeof(struct lnc_isa_softc), 0, &lncdriver, isa_dev_match, NULL,
+	sizeof(struct lnc_isa_softc), 0, &lncdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_sr.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_sr.c,v
retrieving revision 1.2
diff -u -r1.2 if_sr.c
--- if_sr.c	1998/12/21 01:52:13	1.2
+++ if_sr.c	1999/01/06 05:39:48
@@ -226,7 +226,7 @@
 };
 
 struct cfattach sr_isa_ca = {
-        sizeof(struct sr_isa_softc), 0, &srdriver, isa_dev_match, NULL,
+        sizeof(struct sr_isa_softc), 0, &srdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_wl.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_wl.c,v
retrieving revision 1.2
diff -u -r1.2 if_wl.c
--- if_wl.c	1998/12/26 13:08:08	1.2
+++ if_wl.c	1999/01/06 05:40:09
@@ -277,7 +277,7 @@
 };
 
 struct cfattach wl_isa_ca = {
-        sizeof(struct wl_isa_softc), 0, &wldriver, isa_dev_match, NULL,
+        sizeof(struct wl_isa_softc), 0, &wldriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_ze.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_ze.c,v
retrieving revision 1.2
diff -u -r1.2 if_ze.c
--- if_ze.c	1998/12/26 13:08:09	1.2
+++ if_ze.c	1999/01/06 05:40:28
@@ -189,7 +189,7 @@
 };
 
 struct cfattach ze_isa_ca = {
-        sizeof(struct ze_isa_softc), 0, &zedriver, isa_dev_match, NULL,
+        sizeof(struct ze_isa_softc), 0, &zedriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/if_zp.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/if_zp.c,v
retrieving revision 1.2
diff -u -r1.2 if_zp.c
--- if_zp.c	1998/12/26 13:08:10	1.2
+++ if_zp.c	1999/01/06 05:40:49
@@ -221,7 +221,7 @@
 };
 
 struct cfattach zp_isa_ca = {
-        sizeof(struct zp_isa_softc), 0, &zpdriver, isa_dev_match, NULL,
+        sizeof(struct zp_isa_softc), 0, &zpdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/isa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/isa.c,v
retrieving revision 1.13
diff -u -r1.13 isa.c
--- isa.c	1998/12/31 14:18:14	1.13
+++ isa.c	1999/01/06 05:41:20
@@ -116,7 +116,7 @@
 				   void *aux, cfprint_t print));
 
 struct cfattach isa_ca = {
-        sizeof(struct isa_softc), 0, NULL, isa_match, isa_attach, NULL,
+        sizeof(struct isa_softc), 0, NULL, isa_match, isa_attach, NULL, NULL,
 };
 
 static void
Index: sys/i386/isa/istallion.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/istallion.c,v
retrieving revision 1.2
diff -u -r1.2 istallion.c
--- istallion.c	1998/12/26 13:08:11	1.2
+++ istallion.c	1999/01/06 05:41:44
@@ -641,7 +641,7 @@
 };
 
 struct cfattach stli_ca = {
-        sizeof(struct stli_softc), 0, &stlidriver, isa_dev_match, NULL,
+        sizeof(struct stli_softc), 0, &stlidriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/joy.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/joy.c,v
retrieving revision 1.2
diff -u -r1.2 joy.c
--- joy.c	1998/12/26 13:08:13	1.2
+++ joy.c	1999/01/06 05:42:02
@@ -95,7 +95,7 @@
 };
 
 struct cfattach joy_ca = {
-        sizeof(struct joy_softc), 0, &joydriver, isa_dev_match, NULL,
+        sizeof(struct joy_softc), 0, &joydriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/labpc.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/labpc.c,v
retrieving revision 1.2
diff -u -r1.2 labpc.c
--- labpc.c	1998/12/26 13:08:13	1.2
+++ labpc.c	1999/01/06 05:42:33
@@ -292,7 +292,7 @@
 };
 
 struct cfattach labpc_ca = {
-        sizeof(struct labpc_softc), 0, &labpcdriver, isa_dev_match, NULL,
+        sizeof(struct labpc_softc), 0, &labpcdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/loran.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/loran.c,v
retrieving revision 1.2
diff -u -r1.2 loran.c
--- loran.c	1998/12/26 13:08:14	1.2
+++ loran.c	1999/01/06 05:42:53
@@ -584,7 +584,7 @@
 };
 
 struct cfattach loran_ca = {
-        sizeof(struct loran_softc), 0, &lorandriver, isa_dev_match, NULL,
+        sizeof(struct loran_softc), 0, &lorandriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/mcd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/mcd.c,v
retrieving revision 1.2
diff -u -r1.2 mcd.c
--- mcd.c	1998/12/26 13:08:15	1.2
+++ mcd.c	1999/01/06 05:43:11
@@ -217,7 +217,7 @@
 };
 
 struct cfattach mcd_ca = {
-	sizeof(struct mcd_softc), 0, &mcddriver, isa_dev_match, NULL,
+	sizeof(struct mcd_softc), 0, &mcddriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/mse.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/mse.c,v
retrieving revision 1.6
diff -u -r1.6 mse.c
--- mse.c	1998/12/31 14:18:15	1.6
+++ mse.c	1999/01/06 05:43:36
@@ -133,7 +133,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach mse_ca = {
-	sizeof (struct mse_softc), 1, NULL, mse_match, mse_attach, NULL,
+	sizeof (struct mse_softc), 1, NULL, mse_match, mse_attach, NULL,NULL,
 };
 #else
 static	struct mse_softc *mse_sc[NMSE];
Index: sys/i386/isa/npx.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/npx.c,v
retrieving revision 1.5
diff -u -r1.5 npx.c
--- npx.c	1998/12/01 15:25:58	1.5
+++ npx.c	1999/01/06 05:44:04
@@ -147,7 +147,7 @@
 };
 
 struct cfattach npx_ca = {
-	sizeof(struct npx_softc), 0, &npxdriver, isa_dev_match, NULL, NULL,
+	sizeof(struct npx_softc), 0, &npxdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/pcaudio.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/pcaudio.c,v
retrieving revision 1.2
diff -u -r1.2 pcaudio.c
--- pcaudio.c	1998/12/26 13:08:16	1.2
+++ pcaudio.c	1999/01/06 05:44:24
@@ -110,7 +110,7 @@
 };
 
 struct cfattach pca_ca = {
-        sizeof(struct pca_softc), 0, &pcadriver, isa_dev_match, NULL,
+        sizeof(struct pca_softc), 0, &pcadriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/pnp.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/pnp.c,v
retrieving revision 1.7
diff -u -r1.7 pnp.c
--- pnp.c	1998/12/01 15:26:01	1.7
+++ pnp.c	1999/01/06 05:45:07
@@ -51,7 +51,7 @@
 };
 
 struct cfattach pnp_ca = {
-	sizeof(struct pnp_softc), 0, NULL, pnp_match, pnp_attach, NULL,
+	sizeof(struct pnp_softc), 0, NULL, pnp_match, pnp_attach, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/psm.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/psm.c,v
retrieving revision 1.7
diff -u -r1.7 psm.c
--- psm.c	1998/12/23 06:32:33	1.7
+++ psm.c	1999/01/06 05:45:30
@@ -308,7 +308,7 @@
 static int psm_init	__P((struct psm_softc *, int, int));
 
 struct cfattach psm_ca = {
-	sizeof(struct psm_softc), 1, NULL, psm_match, psm_attach, NULL,
+	sizeof(struct psm_softc), 1, NULL, psm_match, psm_attach, NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/rc.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/rc.c,v
retrieving revision 1.2
diff -u -r1.2 rc.c
--- rc.c	1998/12/26 13:08:17	1.2
+++ rc.c	1999/01/06 05:45:49
@@ -99,7 +99,7 @@
 };
 
 struct cfattach rc_isa_ca = {
-        sizeof(struct rc_isa_softc), 0, &rcdriver, isa_dev_match, NULL,
+        sizeof(struct rc_isa_softc), 0, &rcdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/rp.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/rp.c,v
retrieving revision 1.2
diff -u -r1.2 rp.c
--- rp.c	1998/12/26 13:08:17	1.2
+++ rp.c	1999/01/06 05:46:08
@@ -797,7 +797,7 @@
 };
 
 struct cfattach rp_ca = {
-        sizeof(struct rp_softc), 0, &rpdriver, isa_dev_match, NULL,
+        sizeof(struct rp_softc), 0, &rpdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/scd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/scd.c,v
retrieving revision 1.2
diff -u -r1.2 scd.c
--- scd.c	1998/12/26 13:08:18	1.2
+++ scd.c	1999/01/06 05:46:29
@@ -191,7 +191,7 @@
 };
 
 struct cfattach scd_ca = {
-	sizeof(struct scd_softc), 0, &scddriver, isa_dev_match, NULL,
+	sizeof(struct scd_softc), 0, &scddriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/si.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/si.c,v
retrieving revision 1.2
diff -u -r1.2 si.c
--- si.c	1998/12/26 13:08:19	1.2
+++ si.c	1999/01/06 05:46:56
@@ -138,7 +138,7 @@
 };
 
 struct cfattach si_isa_ca = {
-        sizeof(struct si_isa_softc), 0, &sidriver, isa_dev_match, NULL,
+        sizeof(struct si_isa_softc), 0, &sidriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/sio.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/sio.c,v
retrieving revision 1.7
diff -u -r1.7 sio.c
--- sio.c	1998/12/01 15:26:03	1.7
+++ sio.c	1999/01/06 05:47:27
@@ -355,7 +355,7 @@
 };
 
 struct cfattach sio_ca = {
-	sizeof(struct sio_softc), 0, &siodriver, isa_dev_match, NULL, NULL,
+	sizeof(struct sio_softc), 0, &siodriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/spigot.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/spigot.c,v
retrieving revision 1.2
diff -u -r1.2 spigot.c
--- spigot.c	1998/12/26 13:08:20	1.2
+++ spigot.c	1999/01/06 05:47:52
@@ -103,7 +103,7 @@
 };
 
 struct cfattach spigot_isa_ca = {
-        sizeof(struct spigot_isa_softc), 0, &spigotdriver, isa_dev_match, NULL,
+        sizeof(struct spigot_isa_softc), 0, &spigotdriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/stallion.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/stallion.c,v
retrieving revision 1.2
diff -u -r1.2 stallion.c
--- stallion.c	1998/12/26 13:08:21	1.2
+++ stallion.c	1999/01/06 05:48:10
@@ -513,7 +513,7 @@
 };
 
 struct cfattach stl_ca = {
-        sizeof(struct stl_softc), 0, &stldriver, isa_dev_match, NULL,
+        sizeof(struct stl_softc), 0, &stldriver, isa_dev_match, NULL,NULL,NULL,
 };
 #endif
 
Index: sys/i386/isa/syscons.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/syscons.c,v
retrieving revision 1.7
diff -u -r1.7 syscons.c
--- syscons.c	1998/12/01 15:26:05	1.7
+++ syscons.c	1999/01/06 05:48:35
@@ -314,7 +314,7 @@
 };
 
 struct cfattach sc_ca = {
-	sizeof(struct sc_softc), 0, &scdriver, isa_dev_match, NULL, NULL,
+	sizeof(struct sc_softc), 0, &scdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/tw.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/tw.c,v
retrieving revision 1.2
diff -u -r1.2 tw.c
--- tw.c	1998/12/26 13:08:22	1.2
+++ tw.c	1999/01/06 05:48:58
@@ -223,7 +223,7 @@
 };
 
 struct cfattach tw_ca = {
-        sizeof(struct tw_softc), 0, &twdriver, isa_dev_match, NULL,
+        sizeof(struct tw_softc), 0, &twdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/wd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/wd.c,v
retrieving revision 1.11
diff -u -r1.11 wd.c
--- wd.c	1998/12/28 17:32:47	1.11
+++ wd.c	1999/01/06 05:49:59
@@ -269,7 +269,7 @@
 };
 
 struct cfattach wd_ca = {
-	sizeof(struct wd_softc), 0, NULL, wd_match, wd_attach, NULL, 
+	sizeof(struct wd_softc), 0, NULL, wd_match, wd_attach, NULL, NULL,
 };
 
 struct wdc_softc {
@@ -277,7 +277,7 @@
 };
 
 struct cfattach wdc_ca = {
-	sizeof(struct wdc_softc), 0, &wdcdriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct wdc_softc), 0, &wdcdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/wt.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/wt.c,v
retrieving revision 1.2
diff -u -r1.2 wt.c
--- wt.c	1998/12/26 13:08:24	1.2
+++ wt.c	1999/01/06 05:50:18
@@ -284,7 +284,7 @@
 };
 
 struct cfattach wt_ca = {
-	sizeof(struct wt_softc), 0, &wtdriver, isa_dev_match, NULL,
+	sizeof(struct wt_softc), 0, &wtdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/i386/isa/matcd/matcd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/i386/isa/matcd/matcd.c,v
retrieving revision 1.2
diff -u -r1.2 matcd.c
--- matcd.c	1998/12/26 13:08:30	1.2
+++ matcd.c	1999/01/06 05:52:33
@@ -522,7 +522,7 @@
 };
 
 struct cfattach matcd_ca = {
-        sizeof(struct matcd_softc), 0, &matcddriver, isa_dev_match, NULL,
+        sizeof(struct matcd_softc), 0, &matcddriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/fd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/fd.c,v
retrieving revision 1.7
diff -u -r1.7 fd.c
--- fd.c	1998/12/31 14:44:14	1.7
+++ fd.c	1999/01/06 05:53:37
@@ -417,7 +417,7 @@
 };
 
 struct cfattach fd_ca = {
-        sizeof(struct fd_softc), 0, NULL, fd_match, fd_attach, NULL,
+        sizeof(struct fd_softc), 0, NULL, fd_match, fd_attach, NULL, NULL,
 };
 
 struct fdc_softc {
@@ -426,7 +426,7 @@
 };
 
 struct cfattach fdc_ca = {
-        sizeof(struct fdc_softc), 1, NULL, fdc_match, fdc_attach, NULL,
+        sizeof(struct fdc_softc), 1, NULL, fdc_match, fdc_attach, NULL, NULL,
 };
 #endif /* NEW_CONFIG */
 
Index: sys/pc98/pc98/if_ed.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/if_ed.c,v
retrieving revision 1.2
diff -u -r1.2 if_ed.c
--- if_ed.c	1998/10/21 13:59:02	1.2
+++ if_ed.c	1999/01/06 05:54:37
@@ -349,7 +349,7 @@
 };
 
 struct cfattach ed_ca = {
-	sizeof(struct ed_isa_softc), 0, &eddriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct ed_isa_softc), 0, &eddriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
@@ -4264,7 +4264,7 @@
 };
 
 struct cfattach ed_pnp_ca = {
-	sizeof(struct ed_pnp_softc), 0, NULL, ed_pnp_match, ed_pnp_attach, NULL, 
+	sizeof(struct ed_pnp_softc), 0, NULL, ed_pnp_match, ed_pnp_attach, NULL, NULL,
 };
 
 static void
Index: sys/pc98/pc98/if_fe.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/if_fe.c,v
retrieving revision 1.2
diff -u -r1.2 if_fe.c
--- if_fe.c	1998/12/26 13:08:52	1.2
+++ if_fe.c	1999/01/06 05:55:00
@@ -298,7 +298,7 @@
 };
 
 struct cfattach fe_isa_ca = {
-        sizeof(struct fe_isa_softc), 0, &fedriver, isa_dev_match, NULL,
+        sizeof(struct fe_isa_softc), 0, &fedriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/mse.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/mse.c,v
retrieving revision 1.7
diff -u -r1.7 mse.c
--- mse.c	1998/12/31 14:18:17	1.7
+++ mse.c	1999/01/06 05:55:20
@@ -134,7 +134,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach mse_ca = {
-	sizeof (struct mse_softc), 1, NULL, mse_match, mse_attach, NULL,
+	sizeof (struct mse_softc), 1, NULL, mse_match, mse_attach, NULL, NULL,
 };
 #else
 static	struct mse_softc *mse_sc[NMSE];
Index: sys/pc98/pc98/npx.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/npx.c,v
retrieving revision 1.3
diff -u -r1.3 npx.c
--- npx.c	1998/12/01 15:26:18	1.3
+++ npx.c	1999/01/06 05:55:39
@@ -152,7 +152,7 @@
 };
 
 struct cfattach npx_ca = {
-	sizeof(struct npx_softc), 0, &npxdriver, isa_dev_match, NULL, NULL,
+	sizeof(struct npx_softc), 0, &npxdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/pc98.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/pc98.c,v
retrieving revision 1.5
diff -u -r1.5 pc98.c
--- pc98.c	1998/12/31 14:18:18	1.5
+++ pc98.c	1999/01/06 05:56:02
@@ -138,7 +138,7 @@
 				   void *aux, cfprint_t print));
 
 struct cfattach isa_ca = {
-        sizeof(struct isa_softc), 0, NULL, isa_match, isa_attach, NULL,
+        sizeof(struct isa_softc), 0, NULL, isa_match, isa_attach, NULL, NULL,
 };
 
 static void
Index: sys/pc98/pc98/pcaudio.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/pcaudio.c,v
retrieving revision 1.2
diff -u -r1.2 pcaudio.c
--- pcaudio.c	1998/12/26 13:08:53	1.2
+++ pcaudio.c	1999/01/06 05:56:32
@@ -114,7 +114,7 @@
 };
 
 struct cfattach pca_ca = {
-        sizeof(struct pca_softc), 0, &pcadriver, isa_dev_match, NULL,
+        sizeof(struct pca_softc), 0, &pcadriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/sio.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/sio.c,v
retrieving revision 1.3
diff -u -r1.3 sio.c
--- sio.c	1998/12/01 15:26:20	1.3
+++ sio.c	1999/01/06 05:56:52
@@ -449,7 +449,7 @@
 };
 
 struct cfattach sio_ca = {
-	sizeof(struct sio_softc), 0, &siodriver, isa_dev_match, NULL, NULL,
+	sizeof(struct sio_softc), 0, &siodriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/syscons.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/syscons.c,v
retrieving revision 1.3
diff -u -r1.3 syscons.c
--- syscons.c	1998/12/01 15:26:24	1.3
+++ syscons.c	1999/01/06 05:57:13
@@ -376,7 +376,7 @@
 };
 
 struct cfattach sc_ca = {
-	sizeof(struct sc_softc), 0, &scdriver, isa_dev_match, NULL, NULL,
+	sizeof(struct sc_softc), 0, &scdriver, isa_dev_match, NULL, NULL, NULL,
 };
 #endif
 
Index: sys/pc98/pc98/wd.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pc98/pc98/wd.c,v
retrieving revision 1.6
diff -u -r1.6 wd.c
--- wd.c	1998/12/28 17:32:50	1.6
+++ wd.c	1999/01/06 05:57:55
@@ -295,7 +295,7 @@
 };
 
 struct cfattach wd_ca = {
-	sizeof(struct wd_softc), 0, NULL, wd_match, wd_attach, NULL, 
+	sizeof(struct wd_softc), 0, NULL, wd_match, wd_attach, NULL, NULL,
 };
 
 struct wdc_softc {
@@ -303,7 +303,7 @@
 };
 
 struct cfattach wdc_ca = {
-	sizeof(struct wdc_softc), 0, &wdcdriver, isa_dev_match, NULL, NULL, 
+	sizeof(struct wdc_softc), 0, &wdcdriver, isa_dev_match, NULL, NULL, NULL, 
 };
 #endif
 
Index: sys/pci/adv_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/adv_pci.c,v
retrieving revision 1.2
diff -u -r1.2 adv_pci.c
--- adv_pci.c	1998/12/21 01:52:20	1.2
+++ adv_pci.c	1999/01/06 05:09:48
@@ -102,7 +102,7 @@
 };
 
 struct cfattach adv_pci_ca = {
-        sizeof(struct adv_pci_softc), 1, NULL, adv_pci_match, adv_pci_attach, NULL,
+        sizeof(struct adv_pci_softc), 1, NULL, adv_pci_match, adv_pci_attach, NULL,NULL,
 };
 #else
 static struct  pci_device adv_pci_driver = {
Index: sys/pci/adw_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/adw_pci.c,v
retrieving revision 1.2
diff -u -r1.2 adw_pci.c
--- adw_pci.c	1998/12/21 01:52:22	1.2
+++ adw_pci.c	1999/01/06 05:10:14
@@ -71,7 +71,7 @@
 };
 
 struct cfattach adw_pci_ca = {
-	sizeof(struct adw_pci_softc), 1, NULL, adw_pci_match, adw_pci_attach, NULL,
+	sizeof(struct adw_pci_softc), 1, NULL, adw_pci_match, adw_pci_attach, NULL,NULL,
 };
 #else
 static char* adwpciprobe(pcici_t tag, pcidi_t type);
Index: sys/pci/ahc_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/ahc_pci.c,v
retrieving revision 1.2
diff -u -r1.2 ahc_pci.c
--- ahc_pci.c	1998/12/23 03:40:41	1.2
+++ ahc_pci.c	1999/01/06 05:10:39
@@ -163,7 +163,7 @@
 };
 
 struct cfattach ahc_pci_ca = {
-        sizeof(struct ahc_pci_softc), 1, NULL, ahc_pci_match, ahc_pci_attach, NULL,
+        sizeof(struct ahc_pci_softc), 1, NULL, ahc_pci_match, ahc_pci_attach, NULL,NULL,
 };
 #else
 static struct  pci_device ahc_pci_driver = {
Index: sys/pci/brooktree848.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/brooktree848.c,v
retrieving revision 1.3
diff -u -r1.3 brooktree848.c
--- brooktree848.c	1998/10/19 12:34:44	1.3
+++ brooktree848.c	1999/01/06 05:11:26
@@ -444,7 +444,7 @@
 static void	bktr_attach( ATTACH_ARGS );
 
 struct cfattach bktr_ca = {
-	sizeof(bktr_reg_t), 1, NULL, bktr_match, bktr_attach, NULL
+	sizeof(bktr_reg_t), 1, NULL, bktr_match, bktr_attach, NULL,NULL,
 };
 
 #else /* NEW_CONFIG */
Index: sys/pci/bt_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/bt_pci.c,v
retrieving revision 1.2
diff -u -r1.2 bt_pci.c
--- bt_pci.c	1998/12/21 01:52:22	1.2
+++ bt_pci.c	1999/01/06 05:11:53
@@ -66,7 +66,7 @@
 };
 
 struct cfattach bt_pci_ca = {
-	sizeof(struct bt_pci_softc), 1, NULL, bt_pci_match, bt_pci_attach, NULL,
+	sizeof(struct bt_pci_softc), 1, NULL, bt_pci_match, bt_pci_attach, NULL,NULL,
 };
 #else
 static char* bt_pci_probe(pcici_t tag, pcidi_t type);
Index: sys/pci/cy_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/cy_pci.c,v
retrieving revision 1.5
diff -u -r1.5 cy_pci.c
--- cy_pci.c	1998/12/04 06:35:14	1.5
+++ cy_pci.c	1999/01/06 05:12:23
@@ -65,7 +65,7 @@
 	struct device cy_pci_dev;
 };
 struct cfattach cy_pci_ca = {
-	sizeof(struct cy_pci_softc), 1, NULL, cy_pci_match, cy_pci_attach, NULL, 
+	sizeof(struct cy_pci_softc), 1, NULL, cy_pci_match, cy_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static struct pci_device cy_device = {
Index: sys/pci/dpt_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/dpt_pci.c,v
retrieving revision 1.2
diff -u -r1.2 dpt_pci.c
--- dpt_pci.c	1998/12/23 03:40:42	1.2
+++ dpt_pci.c	1999/01/06 05:12:48
@@ -84,7 +84,7 @@
 };
 
 struct cfattach dpt_pci_ca = {
-        sizeof(struct dpt_pci_softc), 1, NULL, dpt_pci_match, dpt_pci_attach, NULL,
+        sizeof(struct dpt_pci_softc), 1, NULL, dpt_pci_match, dpt_pci_attach, NULL,NULL,
 };
 #else
 static  struct pci_device dpt_pci_driver =
Index: sys/pci/if_de.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_de.c,v
retrieving revision 1.4
diff -u -r1.4 if_de.c
--- if_de.c	1998/11/16 11:09:57	1.4
+++ if_de.c	1999/01/06 05:13:24
@@ -5381,7 +5381,7 @@
 static void tulip_pci_attach(TULIP_PCI_ATTACH_ARGS);
 
 struct cfattach de_ca = {
-    sizeof(tulip_softc_t), 1, NULL, tulip_pci_probe, tulip_pci_attach, NULL
+    sizeof(tulip_softc_t), 1, NULL, tulip_pci_probe, tulip_pci_attach, NULL,NULL,
 };
 #endif /* NEW_CONFIG */
 #endif /* __FreeBSD__ */
Index: sys/pci/if_ed_p.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_ed_p.c,v
retrieving revision 1.5
diff -u -r1.5 if_ed_p.c
--- if_ed_p.c	1998/10/16 08:58:48	1.5
+++ if_ed_p.c	1999/01/06 05:14:25
@@ -62,7 +62,7 @@
 	struct device ed_pci_dev;
 };
 struct cfattach ed_pci_ca = {
-	sizeof(struct ed_pci_softc), 1, NULL, ed_pci_match, ed_pci_attach, NULL, 
+	sizeof(struct ed_pci_softc), 1, NULL, ed_pci_match, ed_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static char* ed_pci_probe __P((pcici_t tag, pcidi_t type));
Index: sys/pci/if_en_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_en_pci.c,v
retrieving revision 1.4
diff -u -r1.4 if_en_pci.c
--- if_en_pci.c	1998/12/26 13:08:57	1.4
+++ if_en_pci.c	1999/01/06 05:14:49
@@ -125,7 +125,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach en_pci_ca = {
-	sizeof(struct en_pci_softc), 1, NULL, en_pci_match, en_pci_attach, NULL
+	sizeof(struct en_pci_softc), 1, NULL, en_pci_match, en_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static u_long en_pci_count;
Index: sys/pci/if_fpa.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_fpa.c,v
retrieving revision 1.3
diff -u -r1.3 if_fpa.c
--- if_fpa.c	1998/12/26 13:08:58	1.3
+++ if_fpa.c	1999/01/06 05:15:34
@@ -251,7 +251,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach fpa_ca = {
-	sizeof(pdq_softc_t), 1, NULL, pdq_pci_match, pdq_pci_attach, NULL
+	sizeof(pdq_softc_t), 1, NULL, pdq_pci_match, pdq_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static u_long pdq_pci_count;
Index: sys/pci/if_fxp.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_fxp.c,v
retrieving revision 1.3
diff -u -r1.3 if_fxp.c
--- if_fxp.c	1998/10/19 12:34:56	1.3
+++ if_fxp.c	1999/01/06 05:16:16
@@ -500,7 +500,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach fxp_ca = {
-	sizeof(struct fxp_softc), 1, NULL, fxp_match, fxp_attach, NULL
+	sizeof(struct fxp_softc), 1, NULL, fxp_match, fxp_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static struct pci_device fxp_device = {
Index: sys/pci/if_lnc_p.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_lnc_p.c,v
retrieving revision 1.3
diff -u -r1.3 if_lnc_p.c
--- if_lnc_p.c	1998/12/21 01:52:23	1.3
+++ if_lnc_p.c	1999/01/06 05:16:43
@@ -49,7 +49,7 @@
 };
 
 struct cfattach lnc_pci_ca = {
-	sizeof(struct lnc_pci_softc), 1, NULL, lnc_pci_match, lnc_pci_attach, NULL
+	sizeof(struct lnc_pci_softc), 1, NULL, lnc_pci_match, lnc_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static char* lnc_pci_probe __P((pcici_t tag, pcidi_t type));
Index: sys/pci/if_sr_p.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_sr_p.c,v
retrieving revision 1.4
diff -u -r1.4 if_sr_p.c
--- if_sr_p.c	1998/12/26 13:08:59	1.4
+++ if_sr_p.c	1999/01/06 05:17:17
@@ -74,7 +74,7 @@
 };
 
 struct cfattach sr_pci_ca = {
-        sizeof(struct sr_pci_softc), 1, NULL, sr_pci_match, sr_pci_attach, NULL,
+        sizeof(struct sr_pci_softc), 1, NULL, sr_pci_match, sr_pci_attach, NULL,NULL,
 };
 #else
 static struct pci_device sr_pci_driver =
Index: sys/pci/if_tl.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_tl.c,v
retrieving revision 1.3
diff -u -r1.3 if_tl.c
--- if_tl.c	1998/10/19 12:34:58	1.3
+++ if_tl.c	1999/01/06 05:17:41
@@ -2870,7 +2870,7 @@
 
 #ifdef NEW_CONFIG
 struct cfattach tl_ca = {
-	sizeof(struct tl_softc), 1, NULL, tl_match, tl_attach, NULL
+	sizeof(struct tl_softc), 1, NULL, tl_match, tl_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static struct pci_device tl_device = {
Index: sys/pci/if_tx.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_tx.c,v
retrieving revision 1.3
diff -u -r1.3 if_tx.c
--- if_tx.c	1998/10/19 12:35:03	1.3
+++ if_tx.c	1999/01/06 05:18:06
@@ -107,7 +107,7 @@
 static void epic_pci_attach __P((struct device *, struct device *, void *));
 
 struct cfattach tx_ca = {
-	sizeof(epic_softc_t), 1, NULL, epic_pci_match, epic_pci_attach, NULL
+	sizeof(epic_softc_t), 1, NULL, epic_pci_match, epic_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static u_long epic_pci_count;
Index: sys/pci/if_vx_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_vx_pci.c,v
retrieving revision 1.5
diff -u -r1.5 if_vx_pci.c
--- if_vx_pci.c	1998/10/16 08:59:15	1.5
+++ if_vx_pci.c	1999/01/06 05:18:33
@@ -220,7 +220,7 @@
 	struct device vx_pci_dev;
 };
 struct cfattach vx_pci_ca = {
-	sizeof(struct vx_pci_softc), 1, NULL, vx_pci_match, vx_pci_attach, NULL,
+	sizeof(struct vx_pci_softc), 1, NULL, vx_pci_match, vx_pci_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static struct pci_device vxdevice = {
Index: sys/pci/if_xl.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/if_xl.c,v
retrieving revision 1.3
diff -u -r1.3 if_xl.c
--- if_xl.c	1998/10/19 12:35:06	1.3
+++ if_xl.c	1999/01/06 05:18:57
@@ -201,7 +201,7 @@
 static void xl_attach __P((struct device *, struct device *, void *));
 
 struct cfattach xl_ca = {
-	sizeof(struct xl_softc), 1, NULL, xl_match, xl_attach, NULL
+	sizeof(struct xl_softc), 1, NULL, xl_match, xl_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static unsigned long xl_count = 0;
Index: sys/pci/isp_pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/isp_pci.c,v
retrieving revision 1.2
diff -u -r1.2 isp_pci.c
--- isp_pci.c	1998/12/21 01:52:27	1.2
+++ isp_pci.c	1999/01/06 05:19:22
@@ -200,7 +200,7 @@
 };
 
 struct cfattach isp_ca = {
-	sizeof(struct isp_softc), 1, NULL, isp_pci_match, isp_pci_attach, NULL,
+	sizeof(struct isp_softc), 1, NULL, isp_pci_match, isp_pci_attach, NULL,NULL,
 };
 #else
 struct pci_device isp_pci_driver = {
Index: sys/pci/meteor.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/meteor.c,v
retrieving revision 1.2
diff -u -r1.2 meteor.c
--- meteor.c	1998/10/16 08:59:24	1.2
+++ meteor.c	1999/01/06 05:19:46
@@ -210,7 +210,7 @@
 static void met_attach __P((struct device *, struct device *, void *));
 
 struct cfattach meteor_ca = {
-	sizeof(meteor_reg_t), 1, NULL, met_match, met_attach, NULL
+	sizeof(meteor_reg_t), 1, NULL, met_match, met_attach, NULL,NULL,
 };
 #else /* NEW_CONFIG */
 static	char*	met_probe (pcici_t tag, pcidi_t type);
Index: sys/pci/ncr.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/ncr.c,v
retrieving revision 1.3
diff -u -r1.3 ncr.c
--- ncr.c	1998/12/25 02:02:51	1.3
+++ ncr.c	1999/01/06 05:20:07
@@ -1411,7 +1411,7 @@
 };
 
 struct cfattach ncr_ca = {
-	sizeof(struct ncr_softc), 1, NULL, ncr_match, ncr_attach,NULL,
+	sizeof(struct ncr_softc), 1, NULL, ncr_match, ncr_attach,NULL,NULL,
 };
 #else
 static struct	pci_device ncr_device = {
Index: sys/pci/pci.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/pci.c,v
retrieving revision 1.5
diff -u -r1.5 pci.c
--- pci.c	1998/10/22 07:04:40	1.5
+++ pci.c	1999/01/06 05:20:31
@@ -588,7 +588,7 @@
 };
 
 struct cfattach pci_ca = {
-        sizeof(struct pci_softc), 0, NULL, pci_match, pci_attach, NULL,
+        sizeof(struct pci_softc), 0, NULL, pci_match, pci_attach, NULL,NULL,
 };
 
 
Index: sys/pci/pcisupport.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/pcisupport.c,v
retrieving revision 1.6
diff -u -r1.6 pcisupport.c
--- pcisupport.c	1998/12/25 02:22:54	1.6
+++ pcisupport.c	1999/01/06 05:21:36
@@ -75,7 +75,7 @@
 };
 
 struct cfattach chipset_ca = {
-       sizeof(struct chipset_softc), 1, NULL, chipset_match, chipset_attach, NULL, 
+       sizeof(struct chipset_softc), 1, NULL, chipset_match, chipset_attach, NULL,NULL,
 };
 #else
 static	char*	chipset_probe (pcici_t tag, pcidi_t type);
@@ -950,7 +950,7 @@
 };
 
 struct cfattach vga_ca = {
-       sizeof(struct vga_softc), 1, NULL, vga_match, vga_attach, NULL, 
+       sizeof(struct vga_softc), 1, NULL, vga_match, vga_attach, NULL,NULL, 
 };
 
 #else
Index: sys/pci/xrpu.c
===================================================================
RCS file: /home/cvs/newconfig/sys/pci/xrpu.c,v
retrieving revision 1.3
diff -u -r1.3 xrpu.c
--- xrpu.c	1998/12/26 13:09:00	1.3
+++ xrpu.c	1999/01/06 05:22:11
@@ -83,7 +83,7 @@
 };
 
 struct cfattach xrpu_ca = {
-        sizeof(struct xrpu_softc), 1, NULL, xrpu_pci_match, xrpu_pci_attach, NULL,
+        sizeof(struct xrpu_softc), 1, NULL, xrpu_pci_match, xrpu_pci_attach, NULL,NULL,
 };
 #else
 static struct pci_device xrpu_device = {

----Next_Part(Wed_Jan__6_15:43:52_1999_41)----
