Skip to content

Commit aa99969

Browse files
ColinIanKingGreg Ungerer
authored andcommitted
m68k: remove trailing space after \n newline
There is a extraneous space after a newline in a pr_debug message. Remove it. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Greg Ungerer <[email protected]>
1 parent da3ea35 commit aa99969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/m68k/kernel/setup_no.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void __init setup_arch(char **cmdline_p)
138138

139139
pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n",
140140
_stext, _etext, _sdata, _edata, __bss_start, __bss_stop);
141-
pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ",
141+
pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n",
142142
__bss_stop, memory_start, memory_start, memory_end);
143143

144144
memblock_add(_rambase, memory_end - _rambase);

0 commit comments

Comments
 (0)