Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.83 Removed upstreamed: bcm27xx/patches-6.6/950-0483-usb-xhci-borrow-upstream-TRB_FETCH-quirk-on-VL805-ho.patch[1] Manually rebased: bcm27xx/patches-6.6/950-0061-Revert-Revert-xhci-add-quirk-for-host-controllers-th.patch bcm27xx/patches-6.6/950-0485-usb-xhci-add-XHCI_VLI_HUB_TT_QUIRK.patch bcm27xx/patches-6.6/950-0519-usb-dwc3-Set-DMA-and-coherent-masks-early.patch All other patches automatically rebased. 1. https://web.git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/drivers/usb/host/xhci-pci.c?h=linux-6.6.y&id=c401b1b4b835d66792e884b76264d742a20d931d Build system: x86/64 Build-tested: x86/64 Run-tested: x86/64 Signed-off-by: John Audia <therealgraysky@proton.me> [fixed issues with bcm27xx patches] Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
From c078ebbf5f6f6d8390035a9f92eeab766b78884d Mon Sep 17 00:00:00 2001
|
||
From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
|
||
Date: Mon, 22 Apr 2024 10:15:21 +0300
|
||
Subject: [PATCH 14/15] net: dsa: mt7530: do not pass port variable to
|
||
mt7531_rgmii_setup()
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
The mt7531_rgmii_setup() function does not use the port variable, do not
|
||
pass the variable to it.
|
||
|
||
Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
|
||
---
|
||
drivers/net/dsa/mt7530.c | 4 ++--
|
||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
||
--- a/drivers/net/dsa/mt7530.c
|
||
+++ b/drivers/net/dsa/mt7530.c
|
||
@@ -2781,7 +2781,7 @@ mt7530_mac_config(struct dsa_switch *ds,
|
||
mt7530_setup_port6(priv->ds, interface);
|
||
}
|
||
|
||
-static void mt7531_rgmii_setup(struct mt7530_priv *priv, u32 port,
|
||
+static void mt7531_rgmii_setup(struct mt7530_priv *priv,
|
||
phy_interface_t interface,
|
||
struct phy_device *phydev)
|
||
{
|
||
@@ -2832,7 +2832,7 @@ mt7531_mac_config(struct dsa_switch *ds,
|
||
if (phy_interface_mode_is_rgmii(interface)) {
|
||
dp = dsa_to_port(ds, port);
|
||
phydev = dp->slave->phydev;
|
||
- mt7531_rgmii_setup(priv, port, interface, phydev);
|
||
+ mt7531_rgmii_setup(priv, interface, phydev);
|
||
}
|
||
}
|
||
|