Commit 3407dc8e authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: dsa: loop: Inline unregister_fixed_phys()

This is a simple function that only gets used in the driver's remove
function, inline it there.
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5f881503
...@@ -293,15 +293,6 @@ static struct mdio_driver dsa_loop_drv = { ...@@ -293,15 +293,6 @@ static struct mdio_driver dsa_loop_drv = {
#define NUM_FIXED_PHYS (DSA_LOOP_NUM_PORTS - 2) #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) static int __init dsa_loop_init(void)
{ {
struct fixed_phy_status status = { struct fixed_phy_status status = {
...@@ -320,8 +311,12 @@ module_init(dsa_loop_init); ...@@ -320,8 +311,12 @@ module_init(dsa_loop_init);
static void __exit dsa_loop_exit(void) static void __exit dsa_loop_exit(void)
{ {
unsigned int i;
mdio_driver_unregister(&dsa_loop_drv); 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); module_exit(dsa_loop_exit);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment