diff options
author | Dave Airlie <airlied@redhat.com> | 2008-10-27 17:06:23 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-10-27 17:06:23 +1000 |
commit | 389b7617b5b88b6270af5b3824fe73519900c87f (patch) | |
tree | 32dbc5b36b53d7de2d83b848a8bb5c2fdb1d978c | |
parent | 34a3ebffc369575412a4ff2c05c50264e83c6d3e (diff) |
drm: make handles 32-bits again not sure why they changed
-rw-r--r-- | shared-core/drm_mode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-core/drm_mode.h b/shared-core/drm_mode.h index e6daa7ca..0c378f44 100644 --- a/shared-core/drm_mode.h +++ b/shared-core/drm_mode.h @@ -220,9 +220,9 @@ struct drm_mode_fb_cmd { uint32_t width, height; uint32_t pitch; uint32_t bpp; + uint32_t handle; uint32_t depth; - uint64_t handle; }; struct drm_mode_mode_cmd { @@ -255,7 +255,7 @@ struct drm_mode_cursor { uint32_t width; uint32_t height; /* driver specific handle */ - uint64_t handle; + uint32_t handle; }; /* |