Skip to content

Commit 74cccfa

Browse files
committed
drivers: dac: sam: Fix typo in BUILD_ASSERT
Fixed a typo in BUILD_ASSERT macro causing driver to effectively fail to compile as seen in: west twister -p sam_v71_xult/samv71q21b -s drivers.dac.api Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
1 parent 88c7a44 commit 74cccfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dac/dac_sam.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <zephyr/irq.h>
2626
LOG_MODULE_REGISTER(dac_sam, CONFIG_DAC_LOG_LEVEL);
2727

28-
BUILD_ASSERT(IS_ENABLED(CONFIG_SOC_SERIES_SAMX7X)
28+
BUILD_ASSERT(IS_ENABLED(CONFIG_SOC_SERIES_SAMX7X),
2929
"Only SAMx7x series devices are currently supported.");
3030

3131
#define DAC_CHANNEL_NO 2

0 commit comments

Comments
 (0)