]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
fix(nxp-drivers): use semicolon instead of comma
authorElyes Haouas <ehaouas@noos.fr>
Tue, 21 Feb 2023 13:54:50 +0000 (14:54 +0100)
committerElyes HAOUAS <ehaouas@noos.fr>
Thu, 16 Mar 2023 05:43:11 +0000 (07:43 +0200)
Use semicolon insted of comma at the end of line.

Change-Id: Id820f4419fdd7cf522fd8bb07395789d25f40c2e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
drivers/nxp/timer/nxp_timer.c

index 8eecd2e99b672d4759c70b77ba104713680d2ff5..448c0ba93ea637a9ba396c39d4ebae4ef811311c 100644 (file)
@@ -59,7 +59,7 @@ static uint32_t timer_get_value(void)
 
 static void delay_timer_init_args(uint32_t mult, uint32_t div)
 {
-       ops.get_timer_value     = timer_get_value,
+       ops.get_timer_value     = timer_get_value;
        ops.clk_mult            = mult;
        ops.clk_div             = div;