diff options
author | anholt <anholt@FreeBSD.org> | 2006-04-18 06:14:43 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2006-04-18 06:14:43 +0000 |
commit | b591c1981835cde1d8ba2d9f053ec25c8c7656d6 (patch) | |
tree | e6c51d0106ca7f4bc2fc6b436d1041d75e4fc751 /sys/dev/drm/drmP.h | |
parent | a56278e4884a2916d323a27095ca62fc8ad46218 (diff) | |
download | FreeBSD-src-b591c1981835cde1d8ba2d9f053ec25c8c7656d6.zip FreeBSD-src-b591c1981835cde1d8ba2d9f053ec25c8c7656d6.tar.gz |
Reorder the DRM_*_AGP enums to match linux and what our code expects, fixing
i915 attachment.
Submitted by: Jonathan Fosburgh <jonathan@fosburgh.org>
Diffstat (limited to 'sys/dev/drm/drmP.h')
-rw-r--r-- | sys/dev/drm/drmP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/drm/drmP.h b/sys/dev/drm/drmP.h index 081d98c..044a50f 100644 --- a/sys/dev/drm/drmP.h +++ b/sys/dev/drm/drmP.h @@ -220,8 +220,8 @@ typedef void irqreturn_t; enum { DRM_IS_NOT_AGP, - DRM_MIGHT_BE_AGP, - DRM_IS_AGP + DRM_IS_AGP, + DRM_MIGHT_BE_AGP }; #define DRM_AGP_MEM struct agp_memory_info |