mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	Deleted (upstreamed): generic/backport-5.10/610-v5.13-02-netfilter-Fix-fall-through-warnings-for-Clang.patch generic/backport-5.10/792-v5.15-0001-net-dsa-b53-Fix-calculating-number-of-switch-ports.patch generic/backport-5.10/792-v5.15-0002-net-dsa-b53-Set-correct-number-of-ports-in-the-DSA-s.patch generic/backport-5.10/792-v5.15-0003-net-dsa-b53-Fix-IMP-port-setup-on-BCM5301x.patch generic/backport-5.10/840-0001-PCI-of-Don-t-fail-devm_pci_alloc_host_bridge-on-miss.patch generic/backport-5.10/840-0002-PCI-iproc-Fix-BCMA-probe-resource-handling.patch generic/pending-5.10/498-mtd-mtdconcat-select-readwrite-function.patch Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			974 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			974 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From ad426d7d966b525b73ed5a1842dd830312bbba71 Mon Sep 17 00:00:00 2001
 | |
| From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
 | |
| Date: Wed, 17 Mar 2021 09:42:01 +0100
 | |
| Subject: [PATCH] net: dsa: b53: relax is63xx() condition
 | |
| MIME-Version: 1.0
 | |
| Content-Type: text/plain; charset=UTF-8
 | |
| Content-Transfer-Encoding: 8bit
 | |
| 
 | |
| BCM63xx switches are present on bcm63xx and bmips devices.
 | |
| 
 | |
| Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
 | |
| Acked-by: Florian Fainelli <f.fainelli@gmail.com>
 | |
| Signed-off-by: David S. Miller <davem@davemloft.net>
 | |
| ---
 | |
|  drivers/net/dsa/b53/b53_priv.h | 4 ----
 | |
|  1 file changed, 4 deletions(-)
 | |
| 
 | |
| --- a/drivers/net/dsa/b53/b53_priv.h
 | |
| +++ b/drivers/net/dsa/b53/b53_priv.h
 | |
| @@ -186,11 +186,7 @@ static inline int is531x5(struct b53_dev
 | |
|  
 | |
|  static inline int is63xx(struct b53_device *dev)
 | |
|  {
 | |
| -#ifdef CONFIG_BCM63XX
 | |
|  	return dev->chip_id == BCM63XX_DEVICE_ID;
 | |
| -#else
 | |
| -	return 0;
 | |
| -#endif
 | |
|  }
 | |
|  
 | |
|  static inline int is5301x(struct b53_device *dev)
 |