debrix/hw/xorg/scanpci xf86PciData.h, 1.1.1.2, 1.2 xf86PciStdIds.h,
1.2, 1.3 xf86PciStr.h, 1.1.1.2, 1.2 xf86ScanPci.c, 1.2,
1.3 xf86ScanPci.h, 1.1.1.2, 1.2
Daniel Stone
xserver-commit at pdx.freedesktop.org
Fri Jun 11 05:41:28 EST 2004
- Previous message: debrix/hw/xorg/ramdac BT.c, 1.2, 1.3 BT.h, 1.2, 1.3 BTPriv.h, 1.2,
1.3 IBM.c, 1.2, 1.3 IBM.h, 1.2, 1.3 IBMPriv.h, 1.2, 1.3 TI.c,
1.2, 1.3 TI.h, 1.2, 1.3 TIPriv.h, 1.2, 1.3 xf86Cursor.c, 1.2,
1.3 xf86Cursor.h, 1.2, 1.3 xf86CursorPriv.h, 1.2,
1.3 xf86HWCurs.c, 1.2, 1.3 xf86RamDac.c, 1.2, 1.3 xf86RamDac.h,
1.2, 1.3 xf86RamDacCmap.c, 1.2, 1.3 xf86RamDacMod.c, 1.2,
1.3 xf86RamDacPriv.h, 1.2, 1.3
- Next message: debrix/hw/xorg/shadowfb sfbmodule.c, 1.2, 1.3 shadow.c, 1.2,
1.3 shadowfb.h, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: daniel
Update of /cvs/xserver/debrix/hw/xorg/scanpci
In directory pdx:/home/daniel/x/debrix/debrix/hw/xorg/scanpci
Modified Files:
xf86PciData.h xf86PciStdIds.h xf86PciStr.h xf86ScanPci.c
xf86ScanPci.h
Log Message:
Initial import from modular sources.
Index: xf86PciData.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/scanpci/xf86PciData.h,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- xf86PciData.h 25 Nov 2003 19:28:54 -0000 1.1.1.2
+++ xf86PciData.h 10 Jun 2004 19:41:19 -0000 1.2
@@ -27,6 +27,9 @@
* authorization from the copyright holder(s) and author(s).
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef PCI_DATA_H_
#define PCI_DATA_H_
Index: xf86PciStdIds.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/scanpci/xf86PciStdIds.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86PciStdIds.h 23 Apr 2004 19:54:15 -0000 1.2
+++ xf86PciStdIds.h 10 Jun 2004 19:41:19 -0000 1.3
@@ -19,6 +19,9 @@
* copyright notice.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86PciInfo.h"
#ifndef NULL
#define NULL (void *)0
Index: xf86PciStr.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/scanpci/xf86PciStr.h,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- xf86PciStr.h 25 Nov 2003 19:28:55 -0000 1.1.1.2
+++ xf86PciStr.h 10 Jun 2004 19:41:20 -0000 1.2
@@ -31,6 +31,9 @@
* to the scanpci and pcidata modules.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef _XF86_PCISTR_H
#define _XF86_PCISTR_H
Index: xf86ScanPci.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/scanpci/xf86ScanPci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86ScanPci.c 23 Apr 2004 19:54:15 -0000 1.2
+++ xf86ScanPci.c 10 Jun 2004 19:41:20 -0000 1.3
@@ -51,7 +51,10 @@
/* XXX This is including a lot of stuff that modules should not include! */
-#include "X.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
#include "os.h"
#include "xf86.h"
#include "xf86Priv.h"
Index: xf86ScanPci.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/scanpci/xf86ScanPci.h,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -d -r1.1.1.2 -r1.2
--- xf86ScanPci.h 25 Nov 2003 19:28:55 -0000 1.1.1.2
+++ xf86ScanPci.h 10 Jun 2004 19:41:20 -0000 1.2
@@ -26,6 +26,9 @@
* authorization from the copyright holder(s) and author(s).
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef SCANPCI_H_
#define SCANPCI_H_
- Previous message: debrix/hw/xorg/ramdac BT.c, 1.2, 1.3 BT.h, 1.2, 1.3 BTPriv.h, 1.2,
1.3 IBM.c, 1.2, 1.3 IBM.h, 1.2, 1.3 IBMPriv.h, 1.2, 1.3 TI.c,
1.2, 1.3 TI.h, 1.2, 1.3 TIPriv.h, 1.2, 1.3 xf86Cursor.c, 1.2,
1.3 xf86Cursor.h, 1.2, 1.3 xf86CursorPriv.h, 1.2,
1.3 xf86HWCurs.c, 1.2, 1.3 xf86RamDac.c, 1.2, 1.3 xf86RamDac.h,
1.2, 1.3 xf86RamDacCmap.c, 1.2, 1.3 xf86RamDacMod.c, 1.2,
1.3 xf86RamDacPriv.h, 1.2, 1.3
- Next message: debrix/hw/xorg/shadowfb sfbmodule.c, 1.2, 1.3 shadow.c, 1.2,
1.3 shadowfb.h, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xserver-commit
mailing list