Skip to content

Commit 1b80043

Browse files
JuliaLawallKAGA-KOKO
authored andcommitted
clocksource/drivers/armada-370-xp: Use semicolons rather than commas to separate statements
Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // <smpl> @@ expression e1,e2; @@ e1 -, +; e2 ... when any // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/1601233948-11629-17-git-send-email-Julia.Lawall@inria.fr
1 parent 0d555b3 commit 1b80043

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

drivers/clocksource/timer-armada-370-xp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,12 @@ static int armada_370_xp_timer_starting_cpu(unsigned int cpu)
181181
clr = TIMER0_25MHZ;
182182
local_timer_ctrl_clrset(clr, set);
183183

184-
evt->name = "armada_370_xp_per_cpu_tick",
184+
evt->name = "armada_370_xp_per_cpu_tick";
185185
evt->features = CLOCK_EVT_FEAT_ONESHOT |
186186
CLOCK_EVT_FEAT_PERIODIC;
187-
evt->shift = 32,
188-
evt->rating = 300,
189-
evt->set_next_event = armada_370_xp_clkevt_next_event,
187+
evt->shift = 32;
188+
evt->rating = 300;
189+
evt->set_next_event = armada_370_xp_clkevt_next_event;
190190
evt->set_state_shutdown = armada_370_xp_clkevt_shutdown;
191191
evt->set_state_periodic = armada_370_xp_clkevt_set_periodic;
192192
evt->set_state_oneshot = armada_370_xp_clkevt_shutdown;

0 commit comments

Comments
 (0)