fix(nxp-drivers): use semicolon instead of comma

Use semicolon insted of comma at the end of line.

Change-Id: Id820f4419fdd7cf522fd8bb07395789d25f40c2e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Elyes Haouas 2023-02-21 14:54:50 +01:00 committed by Elyes HAOUAS
parent 1fc7106ce1
commit 50b8ea115f

View 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;