Currently, some soc subdirectories contains Kconfig.defconfig.<soc-name>
and Kconfig.defconfig. However:
- Kconfig.defconfig.<soc-name> is included unconditionally by
Kconfig.defconfig
- each subdirectory only contains one SoC
So, it does not make sense to keep these two files.
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
18 lines
347 B
Plaintext
18 lines
347 B
Plaintext
# Silicon Labs EFR32MG21 (Might Gecko) series configuration options
|
|
|
|
# Copyright (c) 2020 TriaGnoSys GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_EFR32MG21
|
|
|
|
config NUM_IRQS
|
|
int
|
|
# must be >= the highest interrupt number used
|
|
default 61
|
|
|
|
config GPIO_GECKO
|
|
default y
|
|
depends on GPIO || LOG_BACKEND_SWO
|
|
|
|
endif # SOC_SERIES_EFR32MG21
|