Commit
e933a1a12a02f42e0013cda87bba37ccb59efc47
Exists in
master
and in
20 other branches
dlt-processor-sdk-linux-03.00.00.04, newt-ti-linux-3.12.y, processor-sdk-linux-01.00.00, processor-sdk-linux-02.00.01, smarc-ti-linux-3.12.10, smarc-ti-linux-3.12.y, smarc-ti-linux-3.14.y, smarc-ti-linux-3.15.y, smarc-ti-lsk-linux-4.1.y, smarct3x-processor-sdk-04.01.00.06, smarct3x-processor-sdk-linux-02.00.01, smarct3x-processor-sdk-linux-03.00.00.04, smarct4x-800-processor-sdk-linux-02.00.01, smarct4x-processor-sdk-04.01.00.06, smarct4x-processor-sdk-linux-02.00.01, smarct4x-processor-sdk-linux-03.00.00.04, ti-linux-3.12.y, ti-linux-3.14.y, ti-linux-3.15.y, ti-lsk-linux-4.1.y
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
... |
... |
@@ -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); |