Skip to content

Commit 709c12e

Browse files
committed
Merge tag 'm68k-for-v4.10-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k updates from Geert Uytterhoeven: "Use seq_puts() for fixed strings" * tag 'm68k-for-v4.10-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k: m68k/atari: Use seq_puts() in atari_get_hardware_list() m68k/amiga: Use seq_puts() in amiga_get_hardware_list()
2 parents 669bb4c + ad595b7 commit 709c12e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

arch/m68k/amiga/config.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,8 +786,7 @@ static void amiga_get_hardware_list(struct seq_file *m)
786786
if (AMIGAHW_PRESENT(name)) \
787787
seq_printf (m, "\t%s\n", str)
788788

789-
seq_printf (m, "Detected hardware:\n");
790-
789+
seq_puts(m, "Detected hardware:\n");
791790
AMIGAHW_ANNOUNCE(AMI_VIDEO, "Amiga Video");
792791
AMIGAHW_ANNOUNCE(AMI_BLITTER, "Blitter");
793792
AMIGAHW_ANNOUNCE(AMBER_FF, "Amber Flicker Fixer");

arch/m68k/atari/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ static void atari_get_hardware_list(struct seq_file *m)
629629
if (ATARIHW_PRESENT(name)) \
630630
seq_printf(m, "\t%s\n", str)
631631

632-
seq_printf(m, "Detected hardware:\n");
632+
seq_puts(m, "Detected hardware:\n");
633633
ATARIHW_ANNOUNCE(STND_SHIFTER, "ST Shifter");
634634
ATARIHW_ANNOUNCE(EXTD_SHIFTER, "STe Shifter");
635635
ATARIHW_ANNOUNCE(TT_SHIFTER, "TT Shifter");

0 commit comments

Comments
 (0)