diff options
| author | Jim Cromie <[email protected]> | 2020-08-31 18:22:08 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2020-09-04 15:21:56 +0000 |
| commit | b52a95eac112f6f21f0c93987c0bbf3e91bfbf88 (patch) | |
| tree | 264c0e2fa4a4ae2dd6aeb09b5897048591cabb35 /lib/dynamic_debug.c | |
| parent | Merge tag 'icc-5.9-rc4' of https://git.linaro.org/people/georgi.djakov/linux ... (diff) | |
| download | kernel-b52a95eac112f6f21f0c93987c0bbf3e91bfbf88.tar.gz kernel-b52a95eac112f6f21f0c93987c0bbf3e91bfbf88.zip | |
dyndbg: give %3u width in pr-format, cosmetic only
Specify the print-width so log entries line up nicely.
no functional changes.
Signed-off-by: Jim Cromie <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'lib/dynamic_debug.c')
| -rw-r--r-- | lib/dynamic_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 1d012e597cc3..01b7d0210412 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -947,7 +947,7 @@ int ddebug_add_module(struct _ddebug *tab, unsigned int n, list_add(&dt->link, &ddebug_tables); mutex_unlock(&ddebug_lock); - v2pr_info("%u debug prints in module %s\n", n, dt->mod_name); + v2pr_info("%3u debug prints in module %s\n", n, dt->mod_name); return 0; } |
