Commit e933a1a12a02f42e0013cda87bba37ccb59efc47

Authored by Fabio Estevam
Committed by Shawn Guo
1 parent 0b48d3a6fb

clocksource: mxs_timer: Add semicolon at end of line

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/clocksource/mxs_timer.c
... ... @@ -301,5 +301,5 @@
301 301 irq = irq_of_parse_and_map(np, 0);
302 302 setup_irq(irq, &mxs_timer_irq);
303 303 }
304   -CLOCKSOURCE_OF_DECLARE(mxs, "fsl,timrot", mxs_timer_init)
  304 +CLOCKSOURCE_OF_DECLARE(mxs, "fsl,timrot", mxs_timer_init);