aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2021-04-06 14:39:39 +0100
committerRob Clark <[email protected]>2021-04-07 11:05:43 -0700
commitf1902c6b88292da76d85b8b1c51260f25aa41702 (patch)
tree8334e588eebe80561fe90191935fec489b78bb19
parent25ed38b3ed26918b70c1392de7481809b5f5ba2d (diff)
drm/msm: Fix spelling mistake "Purgable" -> "Purgeable"
There is a spelling mistake in debugfs gem stats. Fix it. Also re-align output to cater for the extra 1 character. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Rob Clark <[email protected]>
-rw-r--r--drivers/gpu/drm/msm/msm_gem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/msm/msm_gem.c b/drivers/gpu/drm/msm/msm_gem.c
index 4e91b095ab77..9568d551f7de 100644
--- a/drivers/gpu/drm/msm/msm_gem.c
+++ b/drivers/gpu/drm/msm/msm_gem.c
@@ -979,13 +979,13 @@ void msm_gem_describe_objects(struct list_head *list, struct seq_file *m)
msm_gem_describe(obj, m, &stats);
}
- seq_printf(m, "Total: %4d objects, %9zu bytes\n",
+ seq_printf(m, "Total: %4d objects, %9zu bytes\n",
stats.all.count, stats.all.size);
- seq_printf(m, "Active: %4d objects, %9zu bytes\n",
+ seq_printf(m, "Active: %4d objects, %9zu bytes\n",
stats.active.count, stats.active.size);
- seq_printf(m, "Purgable: %4d objects, %9zu bytes\n",
+ seq_printf(m, "Purgeable: %4d objects, %9zu bytes\n",
stats.purgable.count, stats.purgable.size);
- seq_printf(m, "Purged: %4d objects, %9zu bytes\n",
+ seq_printf(m, "Purged: %4d objects, %9zu bytes\n",
stats.purged.count, stats.purged.size);
}
#endif