mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Removed because they are upstream: generic/backport-5.15/741-v6.9-01-netfilter-flowtable-validate-pppoe-header.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=d06977b9a4109f8738bb276125eb6a0b772bc433 Removed because they are upstream: generic/backport-5.15/741-v6.9-02-netfilter-flowtable-incorrect-pppoe-tuple.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=e719b52d0c56989b0f3475a03a6d64f182c85b56 Manual adapted the following patches: generic/pending-5.15/700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch generic/pending-5.15/723-net-mt7531-ensure-all-MACs-are-powered-down-before-r.patch Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 5bc26de9bfaa6bb5539c09d4435dced98f429cfc Mon Sep 17 00:00:00 2001
 | 
						|
From: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
 | 
						|
Date: Mon, 11 Apr 2022 10:46:37 +0100
 | 
						|
Subject: [PATCH 09/13] net: dsa: mt7530: mark as non-legacy
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Type: text/plain; charset=UTF-8
 | 
						|
Content-Transfer-Encoding: 8bit
 | 
						|
 | 
						|
The mt7530 driver does not make use of the speed, duplex, pause or
 | 
						|
advertisement in its phylink_mac_config() implementation, so it can be
 | 
						|
marked as a non-legacy driver.
 | 
						|
 | 
						|
Tested-by: Marek Behún <kabel@kernel.org>
 | 
						|
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
 | 
						|
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
 | 
						|
---
 | 
						|
 drivers/net/dsa/mt7530.c | 6 ++++++
 | 
						|
 1 file changed, 6 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/net/dsa/mt7530.c
 | 
						|
+++ b/drivers/net/dsa/mt7530.c
 | 
						|
@@ -3193,6 +3193,12 @@ static void mt753x_phylink_get_caps(stru
 | 
						|
 	config->mac_capabilities = MAC_ASYM_PAUSE | MAC_SYM_PAUSE |
 | 
						|
 				   MAC_10 | MAC_100 | MAC_1000FD;
 | 
						|
 
 | 
						|
+	/* This driver does not make use of the speed, duplex, pause or the
 | 
						|
+	 * advertisement in its mac_config, so it is safe to mark this driver
 | 
						|
+	 * as non-legacy.
 | 
						|
+	 */
 | 
						|
+	config->legacy_pre_march2020 = false;
 | 
						|
+
 | 
						|
 	priv->info->mac_port_get_caps(ds, port, config);
 | 
						|
 }
 | 
						|
 
 |