summaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorDave Airlie <airlied@starflyer.(none)>2005-08-05 14:13:15 +0200
committerDave Airlie <airlied@linux.ie>2005-08-05 14:13:15 +0200
commitdb215327c62c2db533afb322761fa04ea6244164 (patch)
tree40c377b02336c5cc2fba378c7a3b921401719a9f /drivers/char
parentdrm: updated DRM map patch for 32/64 bit systems (diff)
downloadlinux-db215327c62c2db533afb322761fa04ea6244164.tar.xz
linux-db215327c62c2db533afb322761fa04ea6244164.zip
drm: switch drm_handle_t to unsigned int
This converts the drm_handle_t to unsigned int. This is currently safe to do as we don't pass these across the kernel/user boundary, but userspace does use these, but no-one builds userspace against the kernel headers at present so it is okay to switch over the kernel copy of drm.h at this point. (The CVS tree will switch over soon in sync with some Mesa changes) From: Egbert Eich <eich@suse.de> Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/drm/drm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm.h b/drivers/char/drm/drm.h
index 3a4745f76cf0..fc6598a81acd 100644
--- a/drivers/char/drm/drm.h
+++ b/drivers/char/drm/drm.h
@@ -98,7 +98,7 @@
#define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT))
-typedef unsigned long drm_handle_t;
+typedef unsigned int drm_handle_t;
typedef unsigned int drm_context_t;
typedef unsigned int drm_drawable_t;
typedef unsigned int drm_magic_t;