Commit f1902c6b authored by Colin Ian King's avatar Colin Ian King Committed by Rob Clark
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210406133939.425987-1-colin.king@canonical.com


Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
parent 25ed38b3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -983,7 +983,7 @@ void msm_gem_describe_objects(struct list_head *list, struct seq_file *m)
			stats.all.count, stats.all.size);
	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",
			stats.purged.count, stats.purged.size);