Commit c4c53f87 authored by Gerard Marull-Paretas's avatar Gerard Marull-Paretas Committed by Benjamin Cabé
Browse files

soc: microchip: mec*: remove redundant PINCTRL/GPIO defconfigs



These options must be selected by drivers that use the associated
APIs.

Signed-off-by: default avatarGerard Marull-Paretas <gerard@teslabs.com>
parent 4f6de016
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
# Copyright (c) 2024 Microchip Technology Inc.
# SPDX-License-Identifier: Apache-2.0

# Microchip MEC1743QLJ MCU using MEC5 HAL
# Q = 480KB total SRAM
# LJ = 176 pin package

if SOC_MEC1743_QLJ

config GPIO
	default y

config PINCTRL
	default y

endif # SOC_MEC1743_QLJ
+0 −16
Original line number Diff line number Diff line
# Copyright (c) 2024 Microchip Technology Inc.
# SPDX-License-Identifier: Apache-2.0

# Microchip MEC1743QSZ MCU using MEC5 HAL
# Q = 480KB total SRAM
# SZ = 144 pin package

if SOC_MEC1743_QSZ

config GPIO
	default y

config PINCTRL
	default y

endif # SOC_MEC1743_QSZ
+0 −2
Original line number Diff line number Diff line
@@ -11,8 +11,6 @@ config NUM_IRQS
	# All NVIC external sources.
	default 194

rsource "Kconfig.defconfig.mec174*"

config CORTEX_M_SYSTICK
	depends on !RTOS_TIMER

+0 −16
Original line number Diff line number Diff line
# Copyright (c) 2024 Microchip Technology Inc.
# SPDX-License-Identifier: Apache-2.0

# Microchip MEC1753QLJ MCU using MEC5 HAL
# Q = 480KB total SRAM
# LJ = 176 pin package

if SOC_MEC1753_QLJ

config GPIO
	default y

config PINCTRL
	default y

endif # SOC_MEC1753_QLJ
+0 −16
Original line number Diff line number Diff line
# Copyright (c) 2024 Microchip Technology Inc.
# SPDX-License-Identifier: Apache-2.0

# Microchip MEC1743QSZ MCU using MEC5 HAL
# Q = 480KB total SRAM
# SZ = 144 pin package

if SOC_MEC1743_QSZ

config GPIO
	default y

config PINCTRL
	default y

endif # SOC_MEC1743_QSZ
Loading