summaryrefslogtreecommitdiff
path: root/linux-core/drm_bufs.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2006-08-14 11:49:52 +1000
committerDave Airlie <airlied@linux.ie>2006-08-14 11:49:52 +1000
commit18a48a9267826a3c81e87a5fa9bba79ea0cd295c (patch)
tree7eb07cbc14a5acf08d4914af428c64b472e498a2 /linux-core/drm_bufs.c
parent7a46d4139982cc82559ccf9a1bc09a52bdf12223 (diff)
remove all TRUE/FALSE no need for this in the drm, use 0 or 1
Diffstat (limited to 'linux-core/drm_bufs.c')
-rw-r--r--linux-core/drm_bufs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_bufs.c b/linux-core/drm_bufs.c
index a977b5bc..2eeb401d 100644
--- a/linux-core/drm_bufs.c
+++ b/linux-core/drm_bufs.c
@@ -290,7 +290,7 @@ static int drm_addmap_core(drm_device_t * dev, unsigned int offset,
user_token = (map->type == _DRM_SHM) ? (unsigned long) map->handle :
map->offset;
- ret = drm_map_handle(dev, &list->hash, user_token, FALSE);
+ ret = drm_map_handle(dev, &list->hash, user_token, 0);
if (ret) {
drm_free(map, sizeof(*map), DRM_MEM_MAPS);