Commit 14c8276d authored by Kees Cook's avatar Kees Cook

ARM: footbridge: Fix typo in timer conversion

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: default avatarKees Cook <keescook@chromium.org>
parent c7c2f3d9
......@@ -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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment