mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
5b522e4969
This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Signed-off-by: Martin Schiller <ms@dev.tdt.de>
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From a55b9d802e11baceb35bd312419ad82086065b08 Mon Sep 17 00:00:00 2001
|
|
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
Date: Mon, 10 Oct 2022 16:59:35 +0200
|
|
Subject: [PATCH 732/768] net: dsa: lantiq_gswip: Only allow phy-mode =
|
|
"internal" on the CPU port
|
|
|
|
Add the CPU port to gswip_xrx200_phylink_get_caps() and
|
|
gswip_xrx300_phylink_get_caps(). It connects through a SoC-internal bus,
|
|
so the only allowed phy-mode is PHY_INTERFACE_MODE_INTERNAL.
|
|
|
|
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
---
|
|
drivers/net/dsa/lantiq_gswip.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/net/dsa/lantiq_gswip.c
|
|
+++ b/drivers/net/dsa/lantiq_gswip.c
|
|
@@ -1509,6 +1509,7 @@ static void gswip_xrx200_phylink_get_cap
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
+ case 6:
|
|
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
|
|
config->supported_interfaces);
|
|
break;
|
|
@@ -1540,6 +1541,7 @@ static void gswip_xrx300_phylink_get_cap
|
|
case 2:
|
|
case 3:
|
|
case 4:
|
|
+ case 6:
|
|
__set_bit(PHY_INTERFACE_MODE_INTERNAL,
|
|
config->supported_interfaces);
|
|
break;
|