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>
This commit is contained in:
parent
88c7a443f9
commit
74cccfa1dc
@ -25,7 +25,7 @@
|
||||
#include <zephyr/irq.h>
|
||||
LOG_MODULE_REGISTER(dac_sam, CONFIG_DAC_LOG_LEVEL);
|
||||
|
||||
BUILD_ASSERT(IS_ENABLED(CONFIG_SOC_SERIES_SAMX7X)
|
||||
BUILD_ASSERT(IS_ENABLED(CONFIG_SOC_SERIES_SAMX7X),
|
||||
"Only SAMx7x series devices are currently supported.");
|
||||
|
||||
#define DAC_CHANNEL_NO 2
|
||||
|
||||
Loading…
Reference in New Issue
Block a user