Skip to content

Commit 40fc012

Browse files
committed
drm/msm/dpu: rename average bandwidth-related debugfs files
Rename the debugfs files to match their purpose and the patter provided by other bandwidth and clock-related files: threshold_high -> max_core_ab threshold_low -> low_core_ab Reviewed-by: Abhinav Kumar <[email protected]> Signed-off-by: Dmitry Baryshkov <[email protected]> Patchwork: https://patchwork.freedesktop.org/patch/636069/ Link: https://lore.kernel.org/r/[email protected]
1 parent f6c782e commit 40fc012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,9 @@ int dpu_core_perf_debugfs_init(struct dpu_kms *dpu_kms, struct dentry *parent)
464464
&perf->core_clk_rate);
465465
debugfs_create_u32("enable_bw_release", 0600, entry,
466466
(u32 *)&perf->enable_bw_release);
467-
debugfs_create_u32("threshold_low", 0400, entry,
467+
debugfs_create_u32("low_core_ab", 0400, entry,
468468
(u32 *)&perf->perf_cfg->max_bw_low);
469-
debugfs_create_u32("threshold_high", 0400, entry,
469+
debugfs_create_u32("max_core_ab", 0400, entry,
470470
(u32 *)&perf->perf_cfg->max_bw_high);
471471
debugfs_create_u32("min_core_ib", 0400, entry,
472472
(u32 *)&perf->perf_cfg->min_core_ib);

0 commit comments

Comments
 (0)