Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}