Skip to content

Commit 8c82d20

Browse files
xiaoqizhansimbit18
authored andcommitted
arch/arm: Fix the compilation error
When the macro SDADC_HAVE_TIMER is enabled, a compilation error will occur due to the missing semicolon after the variable. Signed-off-by: zhanxiaoqi <zhanxiaoqi@bytedance.com>
1 parent e874561 commit 8c82d20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/arm/src/stm32/stm32_sdadc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ struct stm32_dev_s
136136
* block */
137137
#ifdef SDADC_HAVE_TIMER
138138
uint32_t tbase; /* Base address of timer used by this SDADC block */
139-
uint32_t jextsel /* JEXTSEL value used by this SDADC block */
139+
uint32_t jextsel; /* JEXTSEL value used by this SDADC block */
140140
uint32_t pclck; /* The PCLK frequency that drives this timer */
141141
uint32_t freq; /* The desired frequency of conversions */
142142
#endif

0 commit comments

Comments
 (0)