summaryrefslogtreecommitdiff
path: root/linux-core/drm_bo.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-27 09:31:39 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-09-27 09:31:39 +0200
commitc97149b45be9d0e9385d4c6721aa70dad68a1aa1 (patch)
treeb06544e0ab78bd18f83e73fbee550ec3efa70985 /linux-core/drm_bo.c
parent235f6fc650e9974211843b9196a903963dae0211 (diff)
Fix tt fixed size that slipped through in previous commit.
Diffstat (limited to 'linux-core/drm_bo.c')
-rw-r--r--linux-core/drm_bo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_bo.c b/linux-core/drm_bo.c
index 4f1c4173..f479c81a 100644
--- a/linux-core/drm_bo.c
+++ b/linux-core/drm_bo.c
@@ -1562,7 +1562,7 @@ int drm_mm_init_ioctl(DRM_IOCTL_ARGS)
if (arg.req.tt_p_size) {
ret = drm_mm_init(&bm->tt_manager,
arg.req.tt_p_offset,
- 3000 /*arg.req.tt_p_size*/);
+ arg.req.tt_p_size);
bm->has_tt = 1;
bm->use_tt = 1;