Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Mar 2004 22:05:09 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 48109 for review
Message-ID:  <200403040605.i24659Sf013937@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=48109

Change 48109 by peter@peter_daintree on 2004/03/03 22:04:44

	exterminate proliferation of duplicate MI headers in MD include area
	with extreme prejudice.

Affected files ...

.. //depot/projects/hammer/sys/amd64/include/dvcfg.h#2 delete
.. //depot/projects/hammer/sys/amd64/include/physio_proc.h#2 delete
.. //depot/projects/hammer/sys/dev/ct/bshw_machdep.c#3 edit
.. //depot/projects/hammer/sys/dev/ct/ct.c#3 edit
.. //depot/projects/hammer/sys/dev/ct/ct_isa.c#6 edit
.. //depot/projects/hammer/sys/dev/ncv/ncr53c500.c#3 edit
.. //depot/projects/hammer/sys/dev/ncv/ncr53c500_pccard.c#7 edit
.. //depot/projects/hammer/sys/dev/ncv/ncr53c500hw.h#2 edit
.. //depot/projects/hammer/sys/dev/nsp/nsp.c#4 edit
.. //depot/projects/hammer/sys/dev/nsp/nsp_pccard.c#5 edit
.. //depot/projects/hammer/sys/dev/stg/tmc18c30.c#4 edit
.. //depot/projects/hammer/sys/dev/stg/tmc18c30_pccard.c#7 edit
.. //depot/projects/hammer/sys/i386/include/dvcfg.h#2 delete
.. //depot/projects/hammer/sys/i386/include/physio_proc.h#3 delete

Differences ...

==== //depot/projects/hammer/sys/dev/ct/bshw_machdep.c#3 (text+ko) ====

@@ -78,8 +78,8 @@
 #include <machine/clock.h>
 #include <machine/md_var.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 

==== //depot/projects/hammer/sys/dev/ct/ct.c#3 (text+ko) ====

@@ -76,8 +76,8 @@
 #ifdef __FreeBSD__
 #include <machine/bus.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 

==== //depot/projects/hammer/sys/dev/ct/ct_isa.c#6 (text+ko) ====

@@ -81,8 +81,8 @@
 #include <pc98/pc98/pc98.h>
 #include <isa/isavar.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 

==== //depot/projects/hammer/sys/dev/ncv/ncr53c500.c#3 (text+ko) ====

@@ -79,8 +79,8 @@
 #include <machine/bus_pio.h>
 #include <machine/bus.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 

==== //depot/projects/hammer/sys/dev/ncv/ncr53c500_pccard.c#7 (text+ko) ====

@@ -46,7 +46,7 @@
 
 #include <machine/bus.h>
 #include <machine/bus_pio.h>
-#include <machine/dvcfg.h>
+#include <compat/netbsd/dvcfg.h>
 
 #include <sys/device_port.h>
 

==== //depot/projects/hammer/sys/dev/ncv/ncr53c500hw.h#2 (text+ko) ====

@@ -36,7 +36,7 @@
 #ifndef	__NCR53C500HW_H_
 #define	__NCR53C500HW_H_
 
-#include <machine/dvcfg.h>
+#include <compat/netbsd/dvcfg.h>
 
 #define	NCV_HOSTID	7
 #define	NCV_NTARGETS	8

==== //depot/projects/hammer/sys/dev/nsp/nsp.c#4 (text+ko) ====

@@ -79,8 +79,8 @@
 #include <machine/bus_memio.h>
 #include <machine/bus.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 #include <dev/nsp/nspreg.h>

==== //depot/projects/hammer/sys/dev/nsp/nsp_pccard.c#5 (text+ko) ====

@@ -44,8 +44,8 @@
 
 #include <vm/vm.h>
 
-#include <machine/bus.h>
-#include <machine/dvcfg.h>
+#include <compat/netbsd/bus.h>
+#include <compat/netbsd/dvcfg.h>
 
 #include <sys/device_port.h>
 

==== //depot/projects/hammer/sys/dev/stg/tmc18c30.c#4 (text+ko) ====

@@ -77,8 +77,8 @@
 #include <machine/bus_pio.h>
 #include <machine/bus.h>
 
-#include <machine/dvcfg.h>
-#include <machine/physio_proc.h>
+#include <compat/netbsd/dvcfg.h>
+#include <compat/netbsd/physio_proc.h>
 
 #include <cam/scsi/scsi_low.h>
 #include <dev/stg/tmc18c30reg.h>

==== //depot/projects/hammer/sys/dev/stg/tmc18c30_pccard.c#7 (text+ko) ====

@@ -48,7 +48,7 @@
 
 #include <machine/bus.h>
 #include <machine/bus_pio.h>
-#include <machine/dvcfg.h>
+#include <compat/netbsd/dvcfg.h>
 
 #include <sys/device_port.h>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403040605.i24659Sf013937>