Skip to content

Commit 410fbda

Browse files
willdeacondlezcano
authored andcommitted
clocksource/drivers/exynos_mct: Fix silly typo resulting in checkpatch warning
Commit ae460fd ("clocksource/drivers/exynos_mct: Prioritise Arm arch timer on arm64") changed the rating of the MCT clockevents device to be lower than the Arm architected timer and, in the process, replaced a semicolon with a comma thanks to a silly copy-paste error. Put the semicolon back so that the code looks more idiomatic and resolve the SUSPECT_COMMA_SEMICOLON warning from checkpatch at the same time. Cc: Krzysztof Kozlowski <[email protected]> Cc: Daniel Lezcano <[email protected]> Signed-off-by: Will Deacon <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Daniel Lezcano <[email protected]>
1 parent 453e2ca commit 410fbda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clocksource/exynos_mct.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ static int exynos4_mct_starting_cpu(unsigned int cpu)
467467
evt->tick_resume = set_state_shutdown;
468468
evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT |
469469
CLOCK_EVT_FEAT_PERCPU;
470-
evt->rating = MCT_CLKEVENTS_RATING,
470+
evt->rating = MCT_CLKEVENTS_RATING;
471471

472472
exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET);
473473

0 commit comments

Comments
 (0)