From fda05271275d4f63107796471cce9413c9219081 Mon Sep 17 00:00:00 2001 From: Tiago Vignatti Date: Wed, 1 Jul 2015 17:39:19 -0300 Subject: [PATCH] tests/vgem_fb_test: Always profile This commit could be amended with the previous... --- tests/vgem_fb_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/vgem_fb_test.c b/tests/vgem_fb_test.c index 216290a4..8f33e3e9 100644 --- a/tests/vgem_fb_test.c +++ b/tests/vgem_fb_test.c @@ -41,7 +41,7 @@ struct context { }; -static int enable_profiling = false; +static int enable_profiling = true; void disable_psr() { const char psr_path[] = "/sys/module/i915/parameters/enable_psr"; @@ -341,7 +341,7 @@ int main(int argc, char **argv) drm_card_path = optarg; break; case 'p': - enable_profiling = true; + enable_profiling = false; break; default: ret = 1;