mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-25 00:21:28 +02:00
This patch adds pinctrl and gpio support for MT7988 SoC Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
15 lines
548 B
Makefile
15 lines
548 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Core
|
|
obj-$(CONFIG_PINCTRL_MTK) += pinctrl-mtk-common.o
|
|
|
|
# SoC Drivers
|
|
obj-$(CONFIG_PINCTRL_MT7622) += pinctrl-mt7622.o
|
|
obj-$(CONFIG_PINCTRL_MT7623) += pinctrl-mt7623.o
|
|
obj-$(CONFIG_PINCTRL_MT7629) += pinctrl-mt7629.o
|
|
obj-$(CONFIG_PINCTRL_MT7981) += pinctrl-mt7981.o
|
|
obj-$(CONFIG_PINCTRL_MT7986) += pinctrl-mt7986.o
|
|
obj-$(CONFIG_PINCTRL_MT7988) += pinctrl-mt7988.o
|
|
obj-$(CONFIG_PINCTRL_MT8512) += pinctrl-mt8512.o
|
|
obj-$(CONFIG_PINCTRL_MT8516) += pinctrl-mt8516.o
|
|
obj-$(CONFIG_PINCTRL_MT8518) += pinctrl-mt8518.o
|