diff options
author | Dave Airlie <airlied@linux.ie> | 2006-08-14 11:52:34 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-08-14 11:52:34 +1000 |
commit | 0d60cd0036c6bc5383cdc1dad719950afd68cbbf (patch) | |
tree | 35d6ad1b2ccc6df16fc272e6fe7dced90d4a3674 /linux-core/drm_sman.c | |
parent | 18a48a9267826a3c81e87a5fa9bba79ea0cd295c (diff) |
remove all TRUE instances as well
Diffstat (limited to 'linux-core/drm_sman.c')
-rw-r--r-- | linux-core/drm_sman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_sman.c b/linux-core/drm_sman.c index baba9139..b92f0ee7 100644 --- a/linux-core/drm_sman.c +++ b/linux-core/drm_sman.c @@ -91,7 +91,7 @@ static void *drm_sman_mm_allocate(void *private, unsigned long size, drm_mm_t *mm = (drm_mm_t *) private; drm_mm_node_t *tmp; - tmp = drm_mm_search_free(mm, size, alignment, TRUE); + tmp = drm_mm_search_free(mm, size, alignment, 1); if (!tmp) { return NULL; } |