Skip to content

Commit f838f8d

Browse files
committed
mfd: ab8500-debugfs: Remove extraneous seq_putc
Commit c9a3c4e ("mfd: ab8500-debugfs: Remove extraneous curly brace") removed a left-over curly brace that caused build failures, but Joe Perches points out that the subsequent 'seq_putc()' should also be removed, because the commit that caused all these problems already added the final '\n' to the seq_printf() above it. Reported-by: Joe Perches <[email protected]> Fixes: 886c812 ("mfd: ab8500-debugfs: Remove the racy fiddling with irq_desc") Cc: Thomas Gleixner <[email protected]> Cc: Nathan Chancellor <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 40f7823 commit f838f8d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

drivers/mfd/ab8500-debugfs.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,6 @@ static int ab8500_interrupts_show(struct seq_file *s, void *p)
15211521
line + irq_first,
15221522
num_interrupts[line],
15231523
num_wake_interrupts[line]);
1524-
seq_putc(s, '\n');
15251524
}
15261525

15271526
return 0;

0 commit comments

Comments
 (0)