projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b48d3a
)
clocksource: mxs_timer: Add semicolon at end of line
author
Fabio Estevam
<fabio.estevam@freescale.com>
Tue, 2 Apr 2013 16:30:32 +0000
(13:30 -0300)
committer
Shawn Guo
<shawn.guo@linaro.org>
Wed, 3 Apr 2013 02:30:08 +0000
(10:30 +0800)
Fix the following build error:
drivers/clocksource/mxs_timer.c:304:1: error: expected ',' or ';' at end of input
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
drivers/clocksource/mxs_timer.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/clocksource/mxs_timer.c
b/drivers/clocksource/mxs_timer.c
index a4d469b21d96d089070ba8f7fb55482782319d8a..02af4204af867e8f1b0796dc205df8fd4c204953 100644
(file)
--- a/
drivers/clocksource/mxs_timer.c
+++ b/
drivers/clocksource/mxs_timer.c
@@
-301,4
+301,4
@@
static void __init mxs_timer_init(struct device_node *np)
irq = irq_of_parse_and_map(np, 0);
setup_irq(irq, &mxs_timer_irq);
}
-CLOCKSOURCE_OF_DECLARE(mxs, "fsl,timrot", mxs_timer_init)
+CLOCKSOURCE_OF_DECLARE(mxs, "fsl,timrot", mxs_timer_init)
;