Commit-ID: 14c8276d3bdfbadb033e3aaca6ac39781f20e44d Gitweb: https://git.kernel.org/tip/14c8276d3bdfbadb033e3aaca6ac39781f20e44d Author: Kees Cook <keescook@xxxxxxxxxxxx> AuthorDate: Fri, 3 Nov 2017 13:33:23 -0700 Committer: Kees Cook <keescook@xxxxxxxxxxxx> CommitDate: Mon, 6 Nov 2017 12:49:07 -0800 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: Kees Cook <keescook@xxxxxxxxxxxx> --- arch/arm/mach-footbridge/dc21285.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c index 8407e4a..e7b350f 100644 --- a/arch/arm/mach-footbridge/dc21285.c +++ b/arch/arm/mach-footbridge/dc21285.c @@ -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); } -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |