diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2024-09-04 16:30:46 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2024-09-13 13:38:41 +0200 |
commit | 987a43e89ec67cc68518c0558db42ba542581597 (patch) | |
tree | 73b4a937b23e809c50639f4a82b5bfa1fdf7858d /drivers/pmdomain | |
parent | pmdomain: core: Harden inter-column space in debug summary (diff) | |
download | linux-987a43e89ec67cc68518c0558db42ba542581597.tar.xz linux-987a43e89ec67cc68518c0558db42ba542581597.zip |
pmdomain: core: Fix "managed by" alignment in debug summary
The "performance" column contains variable-width values. Hence when
their printed values contain more than one digit, all values in
successive columns become misaligned.
Fix this by formatting it as a fixed-width field. Adjust successive
spaces and field widths to retain the exiting layout.
Fixes: 0155aaf95a2a ("PM: domains: Add the domain HW-managed mode to the summary")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/e004f9d2a75e9a49c269507bb8a4514001751e85.1725459707.git.geert+renesas@glider.be
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/pmdomain')
-rw-r--r-- | drivers/pmdomain/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pmdomain/core.c b/drivers/pmdomain/core.c index fa9d538045fb..5e6aa8747303 100644 --- a/drivers/pmdomain/core.c +++ b/drivers/pmdomain/core.c @@ -3236,7 +3236,7 @@ static void mode_status_str(struct seq_file *s, struct device *dev) gpd_data = to_gpd_data(dev->power.subsys_data->domain_data); - seq_printf(s, "%20s", gpd_data->hw_mode ? "HW" : "SW"); + seq_printf(s, "%9s", gpd_data->hw_mode ? "HW" : "SW"); } static void perf_status_str(struct seq_file *s, struct device *dev) @@ -3244,7 +3244,7 @@ static void perf_status_str(struct seq_file *s, struct device *dev) struct generic_pm_domain_data *gpd_data; gpd_data = to_gpd_data(dev->power.subsys_data->domain_data); - seq_put_decimal_ull(s, "", gpd_data->performance_state); + seq_printf(s, "%-10u ", gpd_data->performance_state); } static int genpd_summary_one(struct seq_file *s, |