diff options
author | Dave Airlie <airlied@redhat.com> | 2011-03-04 14:50:28 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-03-04 15:56:22 +1000 |
commit | e73f88af66fcc50083fae4b7e1c39b469179a97a (patch) | |
tree | 5c4a7a9a9c7223d017f3ab17708d6f57cebdb8d7 /include | |
parent | 9f35421e09c494c36079d7cf5724ae9f832431d7 (diff) | |
download | linux-stable-e73f88af66fcc50083fae4b7e1c39b469179a97a.tar.gz linux-stable-e73f88af66fcc50083fae4b7e1c39b469179a97a.tar.bz2 linux-stable-e73f88af66fcc50083fae4b7e1c39b469179a97a.zip |
drm: add cap bit to denote if dumb ioctl is available or not.
This allows libkms to make an easier decision.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm.h b/include/drm/drm.h index da4efd162d58..9ac431396176 100644 --- a/include/drm/drm.h +++ b/include/drm/drm.h @@ -752,6 +752,8 @@ struct drm_event_vblank { __u32 reserved; }; +#define DRM_CAP_DUMB_BUFFER 0x1 + /* typedef area */ #ifndef __KERNEL__ typedef struct drm_clip_rect drm_clip_rect_t; |