Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clocksource/timer-econet-en751221: Convert comma to semicolon

Replace comma between expressions with semicolons.

Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.

Found by inspection. No functional change intended.
Compile tested only.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Tested-by: Caleb James DeLisle <cjd@cjdns.fr>
Link: https://lore.kernel.org/r/20250603060450.1310204-1-nichen@iscas.ac.cn

authored by

Chen Ni and committed by
Daniel Lezcano
d27b4e33 ffc5870f

+1 -1
+1 -1
drivers/clocksource/timer-econet-en751221.c
··· 146 146 for_each_possible_cpu(i) { 147 147 struct clock_event_device *cd = &per_cpu(econet_timer_pcpu, i); 148 148 149 - cd->rating = 310, 149 + cd->rating = 310; 150 150 cd->features = CLOCK_EVT_FEAT_ONESHOT | 151 151 CLOCK_EVT_FEAT_C3STOP | 152 152 CLOCK_EVT_FEAT_PERCPU;