From fdf320a1b8025dd4b33670fddae9df2890ee6c5b Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Sat, 14 Jun 2003 15:18:49 +0000 Subject: Move the linux AGP includes into drm_agp.h and only define the AGP data structures if AGP support is enabled in the kernel (__REALLY_HAVE_AGP). This fixes the compile errors on kernels without AGP support. --- linux/drm_agp.h | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'linux/drm_agp.h') diff --git a/linux/drm_agp.h b/linux/drm_agp.h index 251245e6..1bd932e1 100644 --- a/linux/drm_agp.h +++ b/linux/drm_agp.h @@ -34,6 +34,19 @@ #ifndef _DRM_AGP_H_ #define _DRM_AGP_H_ +#ifndef __HAVE_AGP +#define __HAVE_AGP 0 +#endif + +#define __REALLY_HAVE_AGP (__HAVE_AGP && \ + (defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE))) + +#if __REALLY_HAVE_AGP + + +#include +#include + /** * AGP memory entry. Stored as a doubly linked list. @@ -92,4 +105,7 @@ extern void DRM(agp_cleanup_dev)(drm_device_t *dev); /*@}*/ -#endif + +#endif /* __REALLY_HAVE_AGP */ + +#endif /* !_DRM_AGP_H_ */ -- cgit v1.2.3