diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:37 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:37 +0000 |
commit | 72063c52b82faf80a0183f66d2fd5789def76d8f (patch) | |
tree | 44777a8a902d417599c3e9abb0c70200e2aa274c /src/i810_common.h | |
parent | e04a1a8f862eb63b546fb74e73ee602fefb82e00 (diff) |
XFree86 4.3.99.16xf86-4_3_99_16
Bring the tree up to date for the Cygwin folks
Diffstat (limited to 'src/i810_common.h')
-rw-r--r-- | src/i810_common.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/i810_common.h b/src/i810_common.h index 2a2e21a5..745b5a50 100644 --- a/src/i810_common.h +++ b/src/i810_common.h @@ -25,7 +25,7 @@ * Converted to common header format: * Jens Owen <jens@tungstengraphics.com> * - * $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_common.h,v 1.1 2002/09/11 00:29:31 dawes Exp $ + * $XFree86: xc/programs/Xserver/hw/xfree86/drivers/i810/i810_common.h,v 1.2 2003/09/28 20:15:58 alanh Exp $ * */ @@ -123,14 +123,18 @@ #define DRM_I810_OV0FLIP 0x0b #define DRM_I810_MC 0x0c #define DRM_I810_RSTATUS 0x0d +#define DRM_I810_FLIP 0x0e #endif +typedef enum _drmI810Initfunc { + I810_INIT_DMA = 0x01, + I810_CLEANUP_DMA = 0x02, + I810_INIT_DMA_1_4 = 0x03 +} drmI810Initfunc; + typedef struct { - enum { - I810_INIT_DMA = 0x01, - I810_CLEANUP_DMA = 0x02 - } func; + drmI810Initfunc func; unsigned int mmio_offset; unsigned int buffers_offset; int sarea_priv_offset; |