From 3331d3637c295993a78f22afe7463cf1c334d329 Mon Sep 17 00:00:00 2001 From: Yann Gautier Date: Wed, 20 Jan 2021 14:10:57 +0100 Subject: [PATCH] feat(stm32mp1): add sdmmc compatible in platform define Add DT_SDMMC2_COMPAT define in stm32mp1_def.h file in platform. It allows the use of the compatible in platform code. Change-Id: I535ad67dd133bab59cf81881adaef42d8e88632c Signed-off-by: Yann Gautier --- plat/st/stm32mp1/stm32mp1_def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/plat/st/stm32mp1/stm32mp1_def.h b/plat/st/stm32mp1/stm32mp1_def.h index 6fde3b5ba..31f80d9a6 100644 --- a/plat/st/stm32mp1/stm32mp1_def.h +++ b/plat/st/stm32mp1/stm32mp1_def.h @@ -626,5 +626,6 @@ static inline uintptr_t tamp_bkpr(uint32_t idx) #define DT_RCC_CLK_COMPAT "st,stm32mp1-rcc" #define DT_RCC_SEC_CLK_COMPAT "st,stm32mp1-rcc-secure" #endif +#define DT_SDMMC2_COMPAT "st,stm32-sdmmc2" #endif /* STM32MP1_DEF_H */