From 2933547eb0d22cb70c783a78ab3d7b4dcc5972ce Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Sun, 5 Jun 2011 21:35:34 +0100 Subject: [PATCH] gem_stress: cpu maps force tiling to be disabled, so fix the printf Signed-off-by: Chris Wilson --- tests/gem_stress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gem_stress.c b/tests/gem_stress.c index a67fc153..226970ca 100644 --- a/tests/gem_stress.c +++ b/tests/gem_stress.c @@ -683,7 +683,7 @@ static void parse_options(int argc, char **argv) case 'm': options.use_cpu_maps = 1; options.forced_tiling = I915_TILING_NONE; - printf("using only X-tiling\n"); + printf("disabling tiling\n"); break; default: printf("unkown command options\n");