From fb57b23a37470c2314d1a31f6f277e5848a97456 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Fri, 11 Jun 2021 16:30:37 -0500 Subject: [PATCH] drivers: hwinfo: Exclude GECKO driver on EFR32MG21 The EFR32MG21 doesn't have a RMU and thus the driver isn't relevant for that SoC series. Add a Kconfig exclusion so the driver isn't available on EFR32MG21 SoCs. Signed-off-by: Kumar Gala --- drivers/hwinfo/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hwinfo/Kconfig b/drivers/hwinfo/Kconfig index 0934ddd0ed9..aa27ff54715 100644 --- a/drivers/hwinfo/Kconfig +++ b/drivers/hwinfo/Kconfig @@ -90,7 +90,7 @@ config HWINFO_PSOC6 config HWINFO_GECKO bool "GECKO hwinfo" default y - depends on SOC_FAMILY_EXX32 + depends on SOC_FAMILY_EXX32 && !SOC_SERIES_EFR32MG21 select SOC_GECKO_RMU help Enable Silabs GECKO hwinfo driver.