mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	swig has been installed on the buildbots a while a ago and Petr Štetiar got a fix for the pylibfdt error. Use that and re-enable the builds for mt7620 and mt7621. Refresh patches while at it. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
		
			
				
	
	
		
			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.
 |