mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-23 12:58:23 +00:00
7b67efb85b
This adds experimental ethernet support for BCM6318, BCM6328, BCM6362, BCM6368 and BCM63268. BCM6358 needs a different driver, so there's no support for now. Working devices: - Comtrend AR-5315u - Comtrend AR-5387un - Comtrend VR-3025u - Comtrend VR-3032u Not working devices: - Netgear DGND3700 v2 (no idea on how the external switch is connected) - Huawei HG556a ver B (BCM6358 needs a separate driveer) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Signed-off-by: maurerr <mariusd84@gmail.com>
30 lines
874 B
Diff
30 lines
874 B
Diff
From cd6906754bbe3e0665ecaeca2cfb26d927fe9277 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= <noltari@gmail.com>
|
|
Date: Mon, 1 Mar 2021 07:29:29 +0100
|
|
Subject: [PATCH 1/3] 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>
|
|
---
|
|
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
|
|
@@ -185,11 +185,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)
|