mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	Import patch fixing the updated firmware path of mt7601u.bin. Refresh patches while at it. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From patchwork Mon May 15 22:56:53 2023
 | 
						|
Content-Type: text/plain; charset="utf-8"
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Transfer-Encoding: 7bit
 | 
						|
X-Patchwork-Submitter: Daniel Golle <daniel@makrotopia.org>
 | 
						|
X-Patchwork-Id: 13242309
 | 
						|
X-Patchwork-Delegate: kvalo@adurom.com
 | 
						|
Return-Path: <linux-wireless-owner@vger.kernel.org>
 | 
						|
Date: Tue, 16 May 2023 00:56:53 +0200
 | 
						|
From: Daniel Golle <daniel@makrotopia.org>
 | 
						|
To: Jakub Kicinski <kuba@kernel.org>, Kalle Valo <kvalo@kernel.org>,
 | 
						|
        "David S. Miller" <davem@davemloft.net>,
 | 
						|
        Eric Dumazet <edumazet@google.com>,
 | 
						|
        Paolo Abeni <pabeni@redhat.com>,
 | 
						|
        Matthias Brugger <matthias.bgg@gmail.com>,
 | 
						|
        AngeloGioacchino Del Regno
 | 
						|
        <angelogioacchino.delregno@collabora.com>,
 | 
						|
        linux-wireless@vger.kernel.org, netdev@vger.kernel.org,
 | 
						|
        linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
 | 
						|
        linux-mediatek@lists.infradead.org
 | 
						|
Subject: [PATCH] wifi: mt7601u: update firmware path
 | 
						|
Message-ID: 
 | 
						|
 <fefcbf36f13873ae0d97438a0156b87e7e1ae64e.1684191377.git.daniel@makrotopia.org>
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Disposition: inline
 | 
						|
Precedence: bulk
 | 
						|
List-ID: <linux-wireless.vger.kernel.org>
 | 
						|
X-Mailing-List: linux-wireless@vger.kernel.org
 | 
						|
 | 
						|
mt7601u.bin was moved to mediatek/ folder in linux-wireless via commit
 | 
						|
8451c2b1 ("mt76xx: Move the old Mediatek WiFi firmware to mediatek")
 | 
						|
and linux-firmware release 20230515.
 | 
						|
 | 
						|
Update the firmware path requested by the mt7601u driver to follow up
 | 
						|
with the move of the file.
 | 
						|
 | 
						|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
 | 
						|
---
 | 
						|
 drivers/net/wireless/mediatek/mt7601u/usb.h | 2 +-
 | 
						|
 1 file changed, 1 insertion(+), 1 deletion(-)
 | 
						|
 | 
						|
 | 
						|
base-commit: 0d9b41daa5907756a31772d8af8ac5ff25cf17c1
 | 
						|
 | 
						|
--- a/drivers/net/wireless/mediatek/mt7601u/usb.h
 | 
						|
+++ b/drivers/net/wireless/mediatek/mt7601u/usb.h
 | 
						|
@@ -8,7 +8,7 @@
 | 
						|
 
 | 
						|
 #include "mt7601u.h"
 | 
						|
 
 | 
						|
-#define MT7601U_FIRMWARE	"mt7601u.bin"
 | 
						|
+#define MT7601U_FIRMWARE	"mediatek/mt7601u.bin"
 | 
						|
 
 | 
						|
 #define MT_VEND_REQ_MAX_RETRY	10
 | 
						|
 #define MT_VEND_REQ_TOUT_MS	300
 |