net: dsa: qca8k: move qca8k_port_to_phy() to header
authorChristian Marangi <ansuelsmth@gmail.com>
Mon, 17 Apr 2023 15:17:23 +0000 (17:17 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 19 Apr 2023 11:59:15 +0000 (12:59 +0100)
Move qca8k_port_to_phy() to qca8k header as it's useful for future
reference in Switch LEDs module since the same logic is applied to get
the right index of the switch port.
Make it inline as it's simple function that just decrease the port.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Michal Kubiak <michal.kubiak@intel.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/qca/qca8k-8xxx.c
drivers/net/dsa/qca/qca8k.h

index 62810903f1b31444af0625642dca3c90cc810a58..20acbd0292f11e692de0339a3d02ba22e43a78ab 100644 (file)
@@ -772,21 +772,6 @@ err_clear_skb:
        return ret;
 }
 
-static u32
-qca8k_port_to_phy(int port)
-{
-       /* From Andrew Lunn:
-        * Port 0 has no internal phy.
-        * Port 1 has an internal PHY at MDIO address 0.
-        * Port 2 has an internal PHY at MDIO address 1.
-        * ...
-        * Port 5 has an internal PHY at MDIO address 4.
-        * Port 6 has no internal PHY.
-        */
-
-       return port - 1;
-}
-
 static int
 qca8k_mdio_busy_wait(struct mii_bus *bus, u32 reg, u32 mask)
 {
index 7996975d29d34f107e0fdd2390ef6aec7a6face3..dd7deb9095d3d27174fa4c9f0d60ab151db49d46 100644 (file)
@@ -421,6 +421,20 @@ struct qca8k_fdb {
        u8 mac[6];
 };
 
+static inline u32 qca8k_port_to_phy(int port)
+{
+       /* From Andrew Lunn:
+        * Port 0 has no internal phy.
+        * Port 1 has an internal PHY at MDIO address 0.
+        * Port 2 has an internal PHY at MDIO address 1.
+        * ...
+        * Port 5 has an internal PHY at MDIO address 4.
+        * Port 6 has no internal PHY.
+        */
+
+       return port - 1;
+}
+
 /* Common setup function */
 extern const struct qca8k_mib_desc ar8327_mib[];
 extern const struct regmap_access_table qca8k_readable_table;