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/config.c | |
parent | 446926f9490342532ff44983cb187c01051174a9 (diff) |
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/config.c')
-rw-r--r-- | arch/m68k/sun3/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/sun3/config.c b/arch/m68k/sun3/config.c index 3af34fa3a344..1d28d380e8cc 100644 --- a/arch/m68k/sun3/config.c +++ b/arch/m68k/sun3/config.c @@ -134,7 +134,7 @@ void __init config_sun3(void) { unsigned long memory_start, memory_end; - printk("ARCH: SUN3\n"); + pr_info("ARCH: SUN3\n"); idprom_init(); /* Subtract kernel memory from available memory */ |