mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-03 01:31:07 +00:00
2f7fb57c12
* Merge uboot-ramips into uboot-mediatek. * Port support for the RAVPower RP WD009 to U-Boot 2022.07. * Add support for MT7621 and add builds for the reference boards. * Add builds for MT7620 and MT7628 reference boards. This should help to make development of U-Boot-level board support for all MediaTek targets much easier. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
30 lines
885 B
Diff
30 lines
885 B
Diff
From f265423a441a3bcb51e25238544adb69f74becc7 Mon Sep 17 00:00:00 2001
|
|
From: Weijie Gao <weijie.gao@mediatek.com>
|
|
Date: Fri, 20 May 2022 11:23:14 +0800
|
|
Subject: [PATCH 14/25] gpio: add support for MediaTek MT7621 SoC
|
|
|
|
This patch makes mt7621_gpio driver available for MediaTek MT7621 SoC
|
|
|
|
Reviewed-by: Stefan Roese <sr@denx.de>
|
|
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
|
|
---
|
|
drivers/gpio/Kconfig | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
|
|
index d7f37f0471..8f7e630098 100644
|
|
--- a/drivers/gpio/Kconfig
|
|
+++ b/drivers/gpio/Kconfig
|
|
@@ -553,7 +553,7 @@ config MT7620_GPIO
|
|
|
|
config MT7621_GPIO
|
|
bool "MediaTek MT7621 GPIO driver"
|
|
- depends on DM_GPIO && SOC_MT7628
|
|
+ depends on DM_GPIO && (SOC_MT7621 || SOC_MT7628)
|
|
default y
|
|
help
|
|
Say yes here to support MediaTek MT7621 compatible GPIOs.
|
|
--
|
|
2.36.1
|
|
|