mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
omapfb: fbcon: remove trailing semicolon in macro definition
The macro use will already have a semicolon. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20201127190508.2842786-1-trix@redhat.com
This commit is contained in:
parent
6fdf38e613
commit
95e22f8ca1
|
|
@ -75,7 +75,7 @@ static void dispc_dump_irqs(struct seq_file *s)
|
|||
|
||||
seq_printf(s, "irqs %d\n", stats.irq_count);
|
||||
#define PIS(x) \
|
||||
seq_printf(s, "%-20s %10d\n", #x, stats.irqs[ffs(DISPC_IRQ_##x)-1]);
|
||||
seq_printf(s, "%-20s %10d\n", #x, stats.irqs[ffs(DISPC_IRQ_##x)-1])
|
||||
|
||||
PIS(FRAMEDONE);
|
||||
PIS(VSYNC);
|
||||
|
|
|
|||
|
|
@ -1554,7 +1554,7 @@ static void dsi_dump_dsidev_irqs(struct platform_device *dsidev,
|
|||
|
||||
seq_printf(s, "irqs %d\n", stats.irq_count);
|
||||
#define PIS(x) \
|
||||
seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1]);
|
||||
seq_printf(s, "%-20s %10d\n", #x, stats.dsi_irqs[ffs(DSI_IRQ_##x)-1])
|
||||
|
||||
seq_printf(s, "-- DSI%d interrupts --\n", dsi->module_id + 1);
|
||||
PIS(VC0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user