From 55454e93015c962779fffd771fef9feae2147acf Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Wed, 8 Dec 2021 18:30:24 +0100 Subject: [PATCH] cpu/gd32v: timer: add ; after DEBUG() --- cpu/gd32v/periph/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/gd32v/periph/timer.c b/cpu/gd32v/periph/timer.c index 21efb89d8c..3a60082291 100644 --- a/cpu/gd32v/periph/timer.c +++ b/cpu/gd32v/periph/timer.c @@ -119,7 +119,7 @@ int timer_init(tim_t tim, unsigned long freq, timer_cb_t cb, void *arg) /* set prescaler */ dev(tim)->PSC = (((periph_apb_clk(timer_config[tim].bus) * 2) / freq) - 1); DEBUG("[timer]: %" PRIu32 "/%lu = %" PRIu16 "\n", - periph_apb_clk(timer_config[tim].bus), freq, dev(tim)->PSC) + periph_apb_clk(timer_config[tim].bus), freq, dev(tim)->PSC); /* generate an update event to apply our configuration */ dev(tim)->SWEVG = TIMER0_SWEVG_UPG_Msk;