diff options
author | Dave Airlie <airlied@redhat.com> | 2011-03-24 06:54:35 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-03-24 07:28:46 -0400 |
commit | 51eab416c9b4b3ed16553d405ec4a5f67daa34cf (patch) | |
tree | f883ecb336132b9b069744a2a7b4a30c7954bf39 /drivers/gpu | |
parent | 1783e4bf6f4e5c3b13c09aff24da7dcc69fb3e2f (diff) |
drm/vblank: update recently added vbl interface to be more future proof.
This makes the interface a bit cleaner by leaving a single gap in the
vblank bit space instead of creating two gaps.
Suggestions from Michel on mailing list/irc.
Reviewed-by: Michel Dänzer <michel@daenzer.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/drm_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c index 3617b4c4bb57..904d7e9c8e47 100644 --- a/drivers/gpu/drm/drm_ioctl.c +++ b/drivers/gpu/drm/drm_ioctl.c | |||
@@ -280,7 +280,7 @@ int drm_getcap(struct drm_device *dev, void *data, struct drm_file *file_priv) | |||
280 | if (dev->driver->dumb_create) | 280 | if (dev->driver->dumb_create) |
281 | req->value = 1; | 281 | req->value = 1; |
282 | break; | 282 | break; |
283 | case DRM_CAP_HIGH_CRTC: | 283 | case DRM_CAP_VBLANK_HIGH_CRTC: |
284 | req->value = 1; | 284 | req->value = 1; |
285 | break; | 285 | break; |
286 | default: | 286 | default: |