projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7c2f3d
)
ARM: footbridge: Fix typo in timer conversion
author
Kees Cook
<keescook@chromium.org>
Fri, 3 Nov 2017 20:33:23 +0000
(13:33 -0700)
committer
Kees Cook
<keescook@chromium.org>
Mon, 6 Nov 2017 20:49:07 +0000
(12:49 -0800)
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>
arch/arm/mach-footbridge/dc21285.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-footbridge/dc21285.c
b/arch/arm/mach-footbridge/dc21285.c
index 8407e4a07c775b8d4438d995799ce2b272ee875f..e7b350f18f5f82b993f36e5f1f258c3e58836c16 100644
(file)
--- 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);
}