diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-11-09 15:40:58 +0100 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2017-02-12 10:36:51 +0100 |
commit | 56bbd86257f899ced7ef9c58210dda4edbd40871 (patch) | |
tree | a55105c986ab8582e01ce0a60143f024d13a6472 /arch/m68k/sun3/prom | |
parent | 446926f9490342532ff44983cb187c01051174a9 (diff) | |
download | linux-56bbd86257f899ced7ef9c58210dda4edbd40871.tar.bz2 |
m68k/sun3: Modernize printing of kernel messages
- Convert from printk() to pr_*(),
- Add missing continuations,
- Do not print nonexistent len variable,
- Add missing sysname[] variable,
- Correct printf()-style format specifiers.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/sun3/prom')
-rw-r--r-- | arch/m68k/sun3/prom/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/sun3/prom/printf.c b/arch/m68k/sun3/prom/printf.c index df85018f487a..5b82bea03493 100644 --- a/arch/m68k/sun3/prom/printf.c +++ b/arch/m68k/sun3/prom/printf.c @@ -39,7 +39,7 @@ prom_printf(char *fmt, ...) #ifdef CONFIG_KGDB if (kgdb_initialized) { - printk("kgdb_initialized = %d\n", kgdb_initialized); + pr_info("kgdb_initialized = %d\n", kgdb_initialized); putpacket(bptr, 1); } else #else |