diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-04-02 13:30:32 -0300 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-03 10:30:08 +0800 |
commit | e933a1a12a02f42e0013cda87bba37ccb59efc47 (patch) | |
tree | c951ed6bcdc9192e3deb8120788a3e4a6c4c3c78 /drivers/clocksource/mxs_timer.c | |
parent | 0b48d3a6fbac641d1da12bbe202ec82ff0c89148 (diff) |
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>
Diffstat (limited to 'drivers/clocksource/mxs_timer.c')
-rw-r--r-- | drivers/clocksource/mxs_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/mxs_timer.c b/drivers/clocksource/mxs_timer.c index a4d469b21d96..02af4204af86 100644 --- 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); |