debrix/hw/xorg/os-support/linux/drm drmmodule.c, 1.2, 1.3 xf86drm.c,
1.2, 1.3 xf86drmCompat.c, 1.2, 1.3 xf86drmHash.c, 1.2,
1.3 xf86drmRandom.c, 1.2, 1.3 xf86drmSL.c, 1.2, 1.3
Daniel Stone
xserver-commit at pdx.freedesktop.org
Fri Jun 11 05:40:59 EST 2004
- Previous message: debrix/hw/xorg/os-support/linux agpgart.h, 1.2, 1.3 lnx.h, 1.2,
1.3 lnxResource.c, 1.2, 1.3 lnx_KbdMap.c, 1.2, 1.3 lnx_agp.c,
1.2, 1.3 lnx_apm.c, 1.2, 1.3 lnx_axp.c, 1.2, 1.3 lnx_ev56.c,
1.2, 1.3 lnx_init.c, 1.2, 1.3 lnx_io.c, 1.2, 1.3 lnx_jstk.c,
1.2, 1.3 lnx_kbd.c, 1.2, 1.3 lnx_kmod.c, 1.2, 1.3 lnx_mouse.c,
1.1.1.2, 1.2 lnx_pci.c, 1.2, 1.3 lnx_video.c, 1.2, 1.3
- Next message: debrix/hw/xorg/os-support/linux/drm/kernel ati_pcigart.h, 1.2,
1.3 dristat.c, 1.1.1.2, 1.2 drmP.h, 1.2, 1.3 drm_agpsupport.h,
1.1.1.2, 1.2 drm_auth.h, 1.1.1.2, 1.2 drm_bufs.h, 1.2,
1.3 drm_context.h, 1.1.1.2, 1.2 drm_dma.h, 1.2,
1.3 drm_drawable.h, 1.1.1.2, 1.2 drm_drv.h, 1.2,
1.3 drm_fops.h, 1.2, 1.3 drm_init.h, 1.1.1.2, 1.2 drm_ioctl.h,
1.2, 1.3 drm_irq.h, 1.1.1.1, 1.2 drm_lock.h, 1.1.1.2,
1.2 drm_memory.h, 1.1.1.2, 1.2 drm_memory_debug.h, 1.1.1.1,
1.2 drm_os_linux.h, 1.2, 1.3 drm_proc.h, 1.1.1.2,
1.2 drm_scatter.h, 1.1.1.2, 1.2 drm_stub.h, 1.1.1.2,
1.2 drm_vm.h, 1.2, 1.3 drmstat.c, 1.1.1.2, 1.2 gamma.h, 1.2,
1.3 gamma_dma.c, 1.2, 1.3 gamma_drm.h, 1.1.1.2,
1.2 gamma_drv.c, 1.2, 1.3 gamma_drv.h, 1.1.1.2,
1.2 gamma_lists.h, 1.1.1.1, 1.2 i810.h, 1.2, 1.3 i810_dma.c,
1.2, 1.3 i810_drm.h, 1.1.1.2, 1.2 i810_drv.c, 1.1.1.2,
1.2 i810_drv.h, 1.1.1.2, 1.2 i830.h, 1.2, 1.3 i830_dma.c, 1.2,
1.3 i830_drm.h, 1.1.1.2, 1.2 i830_drv.c, 1.2, 1.3 i830_drv.h,
1.1.1.2, 1.2 i830_irq.c, 1.2, 1.3 mga_drv.c, 1.2,
1.3 r128_drv.c, 1.2, 1.3 radeon_drv.c, 1.2, 1.3 sis_drv.c,
1.1.1.2, 1.2 tdfx_drv.c, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: daniel
Update of /cvs/xserver/debrix/hw/xorg/os-support/linux/drm
In directory pdx:/home/daniel/x/debrix/debrix/hw/xorg/os-support/linux/drm
Modified Files:
drmmodule.c xf86drm.c xf86drmCompat.c xf86drmHash.c
xf86drmRandom.c xf86drmSL.c
Log Message:
Initial import from modular sources.
Index: drmmodule.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/drmmodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- drmmodule.c 23 Apr 2004 19:54:09 -0000 1.2
+++ drmmodule.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -29,6 +29,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Module.h"
static MODULESETUPPROTO(drmSetup);
Index: xf86drm.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/xf86drm.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86drm.c 23 Apr 2004 19:54:09 -0000 1.2
+++ xf86drm.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -33,6 +33,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/xf86drm.c,v 1.35tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef XFree86Server
# include "xf86.h"
# include "xf86_OSproc.h"
Index: xf86drmCompat.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/xf86drmCompat.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86drmCompat.c 23 Apr 2004 19:54:09 -0000 1.2
+++ xf86drmCompat.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -28,6 +28,9 @@
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/xf86drmCompat.c,v 1.3tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <sys/types.h> /* for int64_t & friends */
#ifdef XFree86Server
# include "xf86.h"
Index: xf86drmHash.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/xf86drmHash.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86drmHash.c 23 Apr 2004 19:54:09 -0000 1.2
+++ xf86drmHash.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -70,6 +70,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define HASH_MAIN 0
#if HASH_MAIN
Index: xf86drmRandom.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/xf86drmRandom.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86drmRandom.c 23 Apr 2004 19:54:09 -0000 1.2
+++ xf86drmRandom.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -73,6 +73,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define RANDOM_MAIN 0
#if RANDOM_MAIN
Index: xf86drmSL.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/os-support/linux/drm/xf86drmSL.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xf86drmSL.c 23 Apr 2004 19:54:09 -0000 1.2
+++ xf86drmSL.c 10 Jun 2004 19:40:57 -0000 1.3
@@ -40,6 +40,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define SL_MAIN 0
#if SL_MAIN
- Previous message: debrix/hw/xorg/os-support/linux agpgart.h, 1.2, 1.3 lnx.h, 1.2,
1.3 lnxResource.c, 1.2, 1.3 lnx_KbdMap.c, 1.2, 1.3 lnx_agp.c,
1.2, 1.3 lnx_apm.c, 1.2, 1.3 lnx_axp.c, 1.2, 1.3 lnx_ev56.c,
1.2, 1.3 lnx_init.c, 1.2, 1.3 lnx_io.c, 1.2, 1.3 lnx_jstk.c,
1.2, 1.3 lnx_kbd.c, 1.2, 1.3 lnx_kmod.c, 1.2, 1.3 lnx_mouse.c,
1.1.1.2, 1.2 lnx_pci.c, 1.2, 1.3 lnx_video.c, 1.2, 1.3
- Next message: debrix/hw/xorg/os-support/linux/drm/kernel ati_pcigart.h, 1.2,
1.3 dristat.c, 1.1.1.2, 1.2 drmP.h, 1.2, 1.3 drm_agpsupport.h,
1.1.1.2, 1.2 drm_auth.h, 1.1.1.2, 1.2 drm_bufs.h, 1.2,
1.3 drm_context.h, 1.1.1.2, 1.2 drm_dma.h, 1.2,
1.3 drm_drawable.h, 1.1.1.2, 1.2 drm_drv.h, 1.2,
1.3 drm_fops.h, 1.2, 1.3 drm_init.h, 1.1.1.2, 1.2 drm_ioctl.h,
1.2, 1.3 drm_irq.h, 1.1.1.1, 1.2 drm_lock.h, 1.1.1.2,
1.2 drm_memory.h, 1.1.1.2, 1.2 drm_memory_debug.h, 1.1.1.1,
1.2 drm_os_linux.h, 1.2, 1.3 drm_proc.h, 1.1.1.2,
1.2 drm_scatter.h, 1.1.1.2, 1.2 drm_stub.h, 1.1.1.2,
1.2 drm_vm.h, 1.2, 1.3 drmstat.c, 1.1.1.2, 1.2 gamma.h, 1.2,
1.3 gamma_dma.c, 1.2, 1.3 gamma_drm.h, 1.1.1.2,
1.2 gamma_drv.c, 1.2, 1.3 gamma_drv.h, 1.1.1.2,
1.2 gamma_lists.h, 1.1.1.1, 1.2 i810.h, 1.2, 1.3 i810_dma.c,
1.2, 1.3 i810_drm.h, 1.1.1.2, 1.2 i810_drv.c, 1.1.1.2,
1.2 i810_drv.h, 1.1.1.2, 1.2 i830.h, 1.2, 1.3 i830_dma.c, 1.2,
1.3 i830_drm.h, 1.1.1.2, 1.2 i830_drv.c, 1.2, 1.3 i830_drv.h,
1.1.1.2, 1.2 i830_irq.c, 1.2, 1.3 mga_drv.c, 1.2,
1.3 r128_drv.c, 1.2, 1.3 radeon_drv.c, 1.2, 1.3 sis_drv.c,
1.1.1.2, 1.2 tdfx_drv.c, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xserver-commit
mailing list