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:
Benjamin Cabé 2025-01-31 14:55:26 +01:00 committed by Benjamin Cabé
parent 88c7a443f9
commit 74cccfa1dc

View File

@ -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