debrix/hw/xorg/os-support/bus 460gxPCI.c, 1.1.1.2, 1.2 460gxPCI.h, 1.1.1.1, 1.2 Pci.c, 1.2, 1.3 Pci.h, 1.2, 1.3 Sbus.c, 1.2, 1.3 axpPci.c, 1.2, 1.3 e8870PCI.c, 1.1.1.2, 1.2 e8870PCI.h, 1.1.1.1, 1.2 freebsdPci.c, 1.2, 1.3 ia64Pci.c, 1.1.1.1, 1.2 ix86Pci.c, 1.1.1.2, 1.2 linuxPci.c, 1.2, 1.3 netbsdPci.c, 1.1.1.2, 1.2 ppcPci.c, 1.2, 1.3 sparcPci.c, 1.1.1.2, 1.2 xf86Pci.h, 1.1.1.2, 1.2 xf86Sbus.h, 1.2, 1.3 zx1PCI.c, 1.1.1.4, 1.2 zx1PCI.h, 1.1.1.1, 1.2

Daniel Stone xserver-commit at pdx.freedesktop.org
Fri Jun 11 05:40:55 EST 2004


Committed by: daniel

Update of /cvs/xserver/debrix/hw/xorg/os-support/bus
In directory pdx:/home/daniel/x/debrix/debrix/hw/xorg/os-support/bus

Modified Files:
	460gxPCI.c 460gxPCI.h Pci.c Pci.h Sbus.c axpPci.c e8870PCI.c 
	e8870PCI.h freebsdPci.c ia64Pci.c ix86Pci.c linuxPci.c 
	netbsdPci.c ppcPci.c sparcPci.c xf86Pci.h xf86Sbus.h zx1PCI.c 
	zx1PCI.h 
Log Message:
Initial import from modular sources.


Index: 460gxPCI.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/460gxPCI.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- 460gxPCI.c	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ 460gxPCI.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -29,6 +29,9 @@
  * This file contains the glue necessary for support of Intel's 460GX chipset.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "460gxPCI.h"
 #include "xf86.h"
 #include "Pci.h"

Index: 460gxPCI.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/460gxPCI.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- 460gxPCI.h	14 Nov 2003 16:48:56 -0000	1.1.1.1
+++ 460gxPCI.h	10 Jun 2004 19:40:52 -0000	1.2
@@ -25,6 +25,9 @@
  * XFree86 Project.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef PCI_460GX_H
 #define PCI_460GX_H 1
 

Index: Pci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/Pci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Pci.c	23 Apr 2004 19:54:08 -0000	1.2
+++ Pci.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -195,9 +195,12 @@
  * authorization from the copyright holder(s) and author(s).
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <errno.h>
 #include <signal.h>
-#include "Xarch.h"
+#include <X11/Xarch.h>
 #include "compiler.h"
 #include "xf86.h"
 #include "xf86Priv.h"

Index: Pci.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/Pci.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Pci.h	23 Apr 2004 19:54:08 -0000	1.2
+++ Pci.h	10 Jun 2004 19:40:52 -0000	1.3
@@ -101,11 +101,14 @@
  * This file has the private Pci definitions.  The public ones are imported
  * from xf86Pci.h.  Drivers should not use this file.
  */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef _PCI_H
 #define _PCI_H 1
 
-#include "Xarch.h"
-#include "Xfuncproto.h"
+#include <X11/Xarch.h>
+#include <X11/Xfuncproto.h>
 #include "xf86Pci.h"
 #include "xf86PciInfo.h"
 

Index: Sbus.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/Sbus.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Sbus.c	23 Apr 2004 19:54:08 -0000	1.2
+++ Sbus.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -22,6 +22,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/Sbus.c,v 1.2tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <fcntl.h>
 #include <stdio.h>
 #include <unistd.h>

Index: axpPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/axpPci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- axpPci.c	23 Apr 2004 19:54:08 -0000	1.2
+++ axpPci.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -45,6 +45,9 @@
  * SOFTWARE.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include "compiler.h"
 #include "xf86.h"

Index: e8870PCI.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/e8870PCI.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- e8870PCI.c	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ e8870PCI.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -29,6 +29,9 @@
  * This file contains the glue necessary for support of Intel's E8870 chipset.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "e8870PCI.h"
 #include "xf86.h"
 #include "Pci.h"

Index: e8870PCI.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/e8870PCI.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- e8870PCI.h	14 Nov 2003 16:48:56 -0000	1.1.1.1
+++ e8870PCI.h	10 Jun 2004 19:40:52 -0000	1.2
@@ -25,6 +25,9 @@
  * XFree86 Project.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef PCI_E8870_H
 #define PCI_E8870_H 1
 

Index: freebsdPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/freebsdPci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- freebsdPci.c	23 Apr 2004 19:54:08 -0000	1.2
+++ freebsdPci.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -45,6 +45,9 @@
  * SOFTWARE.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include "compiler.h"
 #include "xf86.h"

Index: ia64Pci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/ia64Pci.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ia64Pci.c	14 Nov 2003 16:48:56 -0000	1.1.1.1
+++ ia64Pci.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -29,6 +29,9 @@
  * This file contains the glue needed to support various IA-64 chipsets.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "460gxPCI.h"
 #include "e8870PCI.h"
 #include "zx1PCI.h"

Index: ix86Pci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/ix86Pci.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- ix86Pci.c	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ ix86Pci.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -136,6 +136,9 @@
  * authorization from the copyright holder(s) and author(s).
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include "compiler.h"
 #include "xf86.h"

Index: linuxPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/linuxPci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- linuxPci.c	23 Apr 2004 19:54:08 -0000	1.2
+++ linuxPci.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -45,6 +45,9 @@
  * SOFTWARE.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include "compiler.h"
 #include "xf86.h"

Index: netbsdPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/netbsdPci.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- netbsdPci.c	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ netbsdPci.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -27,6 +27,9 @@
  * authorization from the XFree86 Project.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <sys/ioctl.h>

Index: ppcPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/ppcPci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ppcPci.c	23 Apr 2004 19:54:08 -0000	1.2
+++ ppcPci.c	10 Jun 2004 19:40:52 -0000	1.3
@@ -58,6 +58,9 @@
  * SOFTWARE.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include "compiler.h"
 #include "xf86.h"

Index: sparcPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/sparcPci.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- sparcPci.c	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ sparcPci.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -25,6 +25,9 @@
  * XFree86 Project.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86Priv.h"
 #include "xf86_OSlib.h"

Index: xf86Pci.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/xf86Pci.h,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- xf86Pci.h	25 Nov 2003 19:28:50 -0000	1.1.1.2
+++ xf86Pci.h	10 Jun 2004 19:40:52 -0000	1.2
@@ -102,10 +102,13 @@
  * Drivers should use this file rather than Pci.h.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef _XF86PCI_H
 #define _XF86PCI_H 1
-#include "Xarch.h"
-#include "Xfuncproto.h"
+#include <X11/Xarch.h>
+#include <X11/Xfuncproto.h>
 #include "misc.h"
 
 #define PCI_NOT_FOUND	0xFFFFFFFFU

Index: xf86Sbus.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/xf86Sbus.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86Sbus.h	23 Apr 2004 19:54:08 -0000	1.2
+++ xf86Sbus.h	10 Jun 2004 19:40:52 -0000	1.3
@@ -22,6 +22,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/xf86Sbus.h,v 1.3 2001/04/20 17:02:43 tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef _XF86_SBUS_H
 #define _XF86_SBUS_H
 

Index: zx1PCI.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/zx1PCI.c,v
retrieving revision 1.1.1.4
retrieving revision 1.2
diff -u -d -r1.1.1.4 -r1.2
--- zx1PCI.c	29 Jan 2004 08:08:47 -0000	1.1.1.4
+++ zx1PCI.c	10 Jun 2004 19:40:52 -0000	1.2
@@ -31,6 +31,9 @@
  * architectures.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "zx1PCI.h"
 #include "xf86.h"
 #include "xf86_OSlib.h"

Index: zx1PCI.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/bus/zx1PCI.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- zx1PCI.h	14 Nov 2003 16:48:56 -0000	1.1.1.1
+++ zx1PCI.h	10 Jun 2004 19:40:52 -0000	1.2
@@ -25,6 +25,9 @@
  * XFree86 Project.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifndef PCI_ZX1_H
 #define PCI_ZX1_H 1
 




More information about the xserver-commit mailing list