mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
2820657206
No content changes. Only adapt the failing hooks and take over the new patch locations. All errors that wil arise from compiling with the dsa driver will be covered by follow up patches. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
From 2b88563ee5aafd9571d965b7f2093a0f58d98a31 Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Thu, 26 Nov 2020 12:02:21 +0100
|
|
Subject: net: dsa: Add support for rtl838x switch
|
|
|
|
* rename the target to realtek
|
|
* add refactored DSA driver
|
|
* add latest gpio driver
|
|
* lots of arch cleanups
|
|
* new irq driver
|
|
* additional boards
|
|
|
|
Submitted-by: Bert Vermeulen <bert@biot.com>
|
|
Submitted-by: Birger Koblitz <mail@birger-koblitz.de>
|
|
Submitted-by: Sander Vanheule <sander@svanheule.net>
|
|
Submitted-by: Bjørn Mork <bjorn@mork.no>
|
|
Submitted-by: John Crispin <john@phrozen.org>
|
|
---
|
|
drivers/net/dsa/rtl83xx/Kconfig | 2 ++
|
|
drivers/net/dsa/rtl83xx/Makefile | 1 +
|
|
2 files changed, 3 insertions(+)
|
|
|
|
--- a/drivers/net/dsa/Kconfig
|
|
+++ b/drivers/net/dsa/Kconfig
|
|
@@ -89,6 +89,8 @@ source "drivers/net/dsa/xrs700x/Kconfig"
|
|
|
|
source "drivers/net/dsa/realtek/Kconfig"
|
|
|
|
+source "drivers/net/dsa/rtl83xx/Kconfig"
|
|
+
|
|
config NET_DSA_RZN1_A5PSW
|
|
tristate "Renesas RZ/N1 A5PSW Ethernet switch support"
|
|
depends on OF && ARCH_RZN1
|
|
--- a/drivers/net/dsa/Makefile
|
|
+++ b/drivers/net/dsa/Makefile
|
|
@@ -24,5 +24,6 @@ obj-y += mv88e6xxx/
|
|
obj-y += ocelot/
|
|
obj-y += qca/
|
|
obj-y += realtek/
|
|
+obj-y += rtl83xx/
|
|
obj-y += sja1105/
|
|
obj-y += xrs700x/
|