generic: 6.1, 6.6: mt7530: import pending patches
[openwrt/staging/stintel.git] / target / linux / generic / pending-6.6 / 745-14-net-dsa-mt7530-do-not-pass-port-variable-to-mt7531_r.patch
1 From c078ebbf5f6f6d8390035a9f92eeab766b78884d Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Ar=C4=B1n=C3=A7=20=C3=9CNAL?= <arinc.unal@arinc9.com>
3 Date: Mon, 22 Apr 2024 10:15:21 +0300
4 Subject: [PATCH 14/15] net: dsa: mt7530: do not pass port variable to
5 mt7531_rgmii_setup()
6 MIME-Version: 1.0
7 Content-Type: text/plain; charset=UTF-8
8 Content-Transfer-Encoding: 8bit
9
10 The mt7531_rgmii_setup() function does not use the port variable, do not
11 pass the variable to it.
12
13 Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
14 ---
15 drivers/net/dsa/mt7530.c | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18 --- a/drivers/net/dsa/mt7530.c
19 +++ b/drivers/net/dsa/mt7530.c
20 @@ -2785,7 +2785,7 @@ mt7530_mac_config(struct dsa_switch *ds,
21 mt7530_setup_port6(priv->ds, interface);
22 }
23
24 -static void mt7531_rgmii_setup(struct mt7530_priv *priv, u32 port,
25 +static void mt7531_rgmii_setup(struct mt7530_priv *priv,
26 phy_interface_t interface,
27 struct phy_device *phydev)
28 {
29 @@ -2836,7 +2836,7 @@ mt7531_mac_config(struct dsa_switch *ds,
30 if (phy_interface_mode_is_rgmii(interface)) {
31 dp = dsa_to_port(ds, port);
32 phydev = dp->slave->phydev;
33 - mt7531_rgmii_setup(priv, port, interface, phydev);
34 + mt7531_rgmii_setup(priv, interface, phydev);
35 }
36 }
37