diff options
author | Kees Cook <keescook@chromium.org> | 2017-11-03 23:33:23 +0300 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2017-11-06 23:49:07 +0300 |
commit | 14c8276d3bdfbadb033e3aaca6ac39781f20e44d (patch) | |
tree | 3b86a15f5418e100ea43491e17d5812cb299b77a /arch/arm/mach-footbridge | |
parent | c7c2f3d9e86c2f09a514247d1623f00850125636 (diff) | |
download | linux-14c8276d3bdfbadb033e3aaca6ac39781f20e44d.tar.xz |
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@chromium.org>
Diffstat (limited to 'arch/arm/mach-footbridge')
-rw-r--r-- | arch/arm/mach-footbridge/dc21285.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c index 8407e4a07c77..e7b350f18f5f 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); } |