clocksource/drivers/exynos_mct: Increase the size of name array
authorAlim Akhtar <alim.akhtar@samsung.com>
Mon, 21 Feb 2022 17:45:47 +0000 (23:15 +0530)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 7 Mar 2022 17:27:22 +0000 (18:27 +0100)
Variable _name_ hold mct_tick number per cpu and it is currently
limited to 10. Which restrict the scalability of the MCT driver for
the SoC which has more local timers interrupts (>= 12).
Increase the length of it to make mct_tick printed correctly for
each local timer interrupts per CPU.

Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Link: https://lore.kernel.org/r/20220221174547.26176-3-alim.akhtar@samsung.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/clocksource/exynos_mct.c

index bcf2100..f29c812 100644 (file)
@@ -80,7 +80,11 @@ static int mct_irqs[MCT_NR_IRQS];
 struct mct_clock_event_device {
        struct clock_event_device evt;
        unsigned long base;
-       char name[10];
+       /**
+        *  The length of the name must be adjusted if number of
+        *  local timer interrupts grow over two digits
+        */
+       char name[11];
 };
 
 static void exynos4_mct_write(unsigned int value, unsigned long offset)