diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2001-04-06 08:39:02 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2001-04-06 08:39:02 +0000 |
commit | 2bd9bf98c7bc0c23870f86f97341197114c3e70a (patch) | |
tree | 668271ef09ab496e9d3d6bd9161cecbf471c5771 /linux-core/drmP.h | |
parent | 5d6ddbca26d695561fb1d08d798a0cc254b805e7 (diff) |
Handle drivers that don't have __HAVE_SG defined.
Diffstat (limited to 'linux-core/drmP.h')
-rw-r--r-- | linux-core/drmP.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-core/drmP.h b/linux-core/drmP.h index 085d1cb8..227ec35a 100644 --- a/linux-core/drmP.h +++ b/linux-core/drmP.h @@ -999,12 +999,14 @@ extern int DRM(proc_cleanup)(int minor, struct proc_dir_entry *root, struct proc_dir_entry *dev_root); +#if __HAVE_SG /* Scatter Gather Support (drm_scatter.h) */ extern void DRM(sg_cleanup)(drm_sg_mem_t *entry); extern int DRM(sg_alloc)(struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg); extern int DRM(sg_free)(struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg); +#endif /* ATI PCIGART support (ati_pcigart.h) */ extern unsigned long DRM(ati_pcigart_init)(drm_device_t *dev); |