Skip to content

Commit

Permalink
drm/msm: Fix spelling mistake "Purgable" -> "Purgeable"
Browse files Browse the repository at this point in the history
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 <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210406133939.425987-1-colin.king@canonical.com
Signed-off-by: Rob Clark <robdclark@chromium.org>
  • Loading branch information
Colin Ian King authored and Rob Clark committed Apr 7, 2021
1 parent 25ed38b commit f1902c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/gpu/drm/msm/msm_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f1902c6

Please sign in to comment.