diff options
author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2006-09-27 09:31:39 +0200 |
---|---|---|
committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2006-09-27 09:31:39 +0200 |
commit | c97149b45be9d0e9385d4c6721aa70dad68a1aa1 (patch) | |
tree | b06544e0ab78bd18f83e73fbee550ec3efa70985 | |
parent | 235f6fc650e9974211843b9196a903963dae0211 (diff) |
Fix tt fixed size that slipped through in previous commit.
-rw-r--r-- | linux-core/drm_bo.c | 2 |
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; |