]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: dsa: loop: Inline unregister_fixed_phys()
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 15 Jun 2017 17:15:52 +0000 (10:15 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 16 Jun 2017 16:43:48 +0000 (12:43 -0400)
This is a simple function that only gets used in the driver's remove
function, inline it there.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/dsa_loop.c

index 79e62593ff4ee1b336a2e01a29bad2797a3b59b6..fb888593c2e9386064d422abbdada937a74cce1f 100644 (file)
@@ -293,15 +293,6 @@ static struct mdio_driver dsa_loop_drv = {
 
 #define NUM_FIXED_PHYS (DSA_LOOP_NUM_PORTS - 2)
 
-static void unregister_fixed_phys(void)
-{
-       unsigned int i;
-
-       for (i = 0; i < NUM_FIXED_PHYS; i++)
-               if (phydevs[i])
-                       fixed_phy_unregister(phydevs[i]);
-}
-
 static int __init dsa_loop_init(void)
 {
        struct fixed_phy_status status = {
@@ -320,8 +311,12 @@ module_init(dsa_loop_init);
 
 static void __exit dsa_loop_exit(void)
 {
+       unsigned int i;
+
        mdio_driver_unregister(&dsa_loop_drv);
-       unregister_fixed_phys();
+       for (i = 0; i < NUM_FIXED_PHYS; i++)
+               if (phydevs[i])
+                       fixed_phy_unregister(phydevs[i]);
 }
 module_exit(dsa_loop_exit);