mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 01:50:25 +00:00
e34cf6fd17
This patch adds pinctrl and gpio support for MT7988 SoC Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
14 lines
548 B
Makefile
14 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
|