mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
25 lines
780 B
Diff
25 lines
780 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(-)
|
||
|
|
||
|
--- 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.
|