Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 215c860c authored by Shivendra Kakrania's avatar Shivendra Kakrania
Browse files

msm: vidc: Fixing debugfs_create issue for sys cache



While creating disable_video_syscache, "&&" is missing.

CRs-Fixed: 2053067
Change-Id: I178bf43d8cadca9f00f854be8d5b7956b54ce4f4
Signed-off-by: default avatarShivendra Kakrania <shiven@codeaurora.org>
parent ea5149e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ struct dentry *msm_vidc_debugfs_init_drv(void)
	__debugfs_create(bool, "clock_scaling",
			&msm_vidc_clock_scaling) &&
	__debugfs_create(bool, "debug_timeout",
			&msm_vidc_debug_timeout);
			&msm_vidc_debug_timeout) &&
	__debugfs_create(bool, "disable_video_syscache",
			&msm_vidc_syscache_disable);