summaryrefslogtreecommitdiff
path: root/linux-core/drmP.h
diff options
context:
space:
mode:
authorJeff Hartmann <jhartmann@valinux.com>2001-08-08 16:10:47 +0000
committerJeff Hartmann <jhartmann@valinux.com>2001-08-08 16:10:47 +0000
commitb6923b39539c34c2a589197def5eee72a9d719bf (patch)
tree8fc63d04fe2344377ef4123acbe38ff1fa3f3493 /linux-core/drmP.h
parent938a637d1fc33bc8ef14210d655c27d646ddc2d2 (diff)
Update to the code I sent Linus and Alan this morning. Added some missing
agp chipsets to drm_agpsupport.h, redid the card detection common code to use a structure (avoids endian porting issues), changed the tdfx driver to use the kernel pci id '#defines'
Diffstat (limited to 'linux-core/drmP.h')
-rw-r--r--linux-core/drmP.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/linux-core/drmP.h b/linux-core/drmP.h
index b48d9b1f..3b282685 100644
--- a/linux-core/drmP.h
+++ b/linux-core/drmP.h
@@ -393,6 +393,11 @@ do { \
typedef int drm_ioctl_t( struct inode *inode, struct file *filp,
unsigned int cmd, unsigned long arg );
+typedef struct drm_pci_list {
+ u16 vendor;
+ u16 device;
+} drm_pci_list_t;
+
typedef struct drm_ioctl_desc {
drm_ioctl_t *func;
int auth_needed;