diff options
author | Dave Airlie <airlied@starflyer.(none)> | 2006-01-02 21:15:01 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-01-02 21:15:01 +1100 |
commit | b3a80a223d5f1af1e1713383376e5472cec4e20c (patch) | |
tree | 0d749f4a9b16deb53449f25755475c498dc0f743 /drivers/char | |
parent | 0d6aa60b4ac9689b750e35cd66f5d7c053aff0f4 (diff) | |
download | linux-3.10-b3a80a223d5f1af1e1713383376e5472cec4e20c.tar.gz linux-3.10-b3a80a223d5f1af1e1713383376e5472cec4e20c.tar.bz2 linux-3.10-b3a80a223d5f1af1e1713383376e5472cec4e20c.zip |
drm: update lock flags from userspace
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/drm/drm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/drm/drm.h b/drivers/char/drm/drm.h index 64d6237fdd0..9da0ddb892b 100644 --- a/drivers/char/drm/drm.h +++ b/drivers/char/drm/drm.h @@ -90,8 +90,8 @@ #define DRM_MAX_ORDER 22 /**< Up to 2^22 bytes = 4MB */ #define DRM_RAM_PERCENT 10 /**< How much system ram can we lock? */ -#define _DRM_LOCK_HELD 0x80000000 /**< Hardware lock is held */ -#define _DRM_LOCK_CONT 0x40000000 /**< Hardware lock is contended */ +#define _DRM_LOCK_HELD 0x80000000U /**< Hardware lock is held */ +#define _DRM_LOCK_CONT 0x40000000U /**< Hardware lock is contended */ #define _DRM_LOCK_IS_HELD(lock) ((lock) & _DRM_LOCK_HELD) #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT) #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT)) |