Skip to content

Commit

Permalink
ARM: footbridge: Fix typo in timer conversion
Browse files Browse the repository at this point in the history
This fixes a missing semi-colon. It went unnoticed initially since it is
only built under certain defconfigs.

Reported-by: kbuild test robot
Signed-off-by: Kees Cook <keescook@chromium.org>
  • Loading branch information
Kees Cook committed Nov 6, 2017
1 parent c7c2f3d commit 14c8276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-footbridge/dc21285.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static void dc21285_enable_error(struct timer_list *timer)
del_timer(timer);

if (timer == &serr_timer)
enable_irq(IRQ_PCI_SERR)
enable_irq(IRQ_PCI_SERR);
else if (timer == &perr_timer)
enable_irq(IRQ_PCI_PERR);
}
Expand Down

0 comments on commit 14c8276

Please sign in to comment.