drivers: bbram: stm32: add include to fix compilation error
Driver BBRAM for STM32 had a compilation error: "unknown type name 'RTC_TypeDef'" due to missing include file. Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
This commit is contained in:
parent
9ec754d9e6
commit
b0e1e9f5fb
|
@ -11,6 +11,7 @@
|
|||
#include <zephyr/drivers/bbram.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <stm32_ll_rtc.h>
|
||||
LOG_MODULE_REGISTER(bbram, CONFIG_BBRAM_LOG_LEVEL);
|
||||
|
||||
#define STM32_BKP_REG_BYTES 4
|
||||
|
|
Loading…
Reference in a new issue