tests/vgem_fb_test: Always profile

This commit could be amended with the previous...
This commit is contained in:
Tiago Vignatti 2015-07-01 17:39:19 -03:00
parent ccd69d7104
commit fda0527127

View File

@ -41,7 +41,7 @@ struct context {
}; };
static int enable_profiling = false; static int enable_profiling = true;
void disable_psr() { void disable_psr() {
const char psr_path[] = "/sys/module/i915/parameters/enable_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; drm_card_path = optarg;
break; break;
case 'p': case 'p':
enable_profiling = true; enable_profiling = false;
break; break;
default: default:
ret = 1; ret = 1;