net: dsa: remove dev arg of dsa_register_switch
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>
Fri, 26 May 2017 22:12:51 +0000 (18:12 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 31 May 2017 16:35:43 +0000 (12:35 -0400)
The current dsa_register_switch function takes a useless struct device
pointer argument, which always equals ds->dev.

Drivers either call it with ds->dev, or with the same device pointer
passed to dsa_switch_alloc, which ends up being assigned to ds->dev.

This patch removes the second argument of the dsa_register_switch and
_dsa_register_switch functions.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/b53/b53_common.c
drivers/net/dsa/dsa_loop.c
drivers/net/dsa/lan9303-core.c
drivers/net/dsa/mt7530.c
drivers/net/dsa/mv88e6xxx/chip.c
drivers/net/dsa/qca8k.c
include/net/dsa.h
net/dsa/dsa2.c

index 6a5648a9cb09ce0085e74e8490c5c1f7d3cd6177..e68d368e20ac84b636c9d62958c084ad80371787 100644 (file)
@@ -1989,7 +1989,7 @@ int b53_switch_register(struct b53_device *dev)
 
        pr_info("found switch: %s, rev %i\n", dev->name, dev->core_rev);
 
-       return dsa_register_switch(dev->ds, dev->ds->dev);
+       return dsa_register_switch(dev->ds);
 }
 EXPORT_SYMBOL(b53_switch_register);
 
index 5edf07beb9d2d2a39d37e59fb51a5ae631e18bea..79e62593ff4ee1b336a2e01a29bad2797a3b59b6 100644 (file)
@@ -271,7 +271,7 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev)
 
        dev_set_drvdata(&mdiodev->dev, ds);
 
-       return dsa_register_switch(ds, ds->dev);
+       return dsa_register_switch(ds);
 }
 
 static void dsa_loop_drv_remove(struct mdio_device *mdiodev)
index c8b2423c8ef74dda07ec5a61b5ad202189adc523..cd76e61f1fca722e33f6387c293b4b85e239a5a2 100644 (file)
@@ -802,7 +802,7 @@ static int lan9303_register_switch(struct lan9303 *chip)
        chip->ds->ops = &lan9303_switch_ops;
        chip->ds->phys_mii_mask = chip->phy_addr_sel_strap ? 0xe : 0x7;
 
-       return dsa_register_switch(chip->ds, chip->dev);
+       return dsa_register_switch(chip->ds);
 }
 
 static void lan9303_probe_reset_gpio(struct lan9303 *chip,
index 4d2f45153ede6632ae2dd3f40ec34cbd4f45f385..25e00d5e0eec560d25ff1013b878e98d988e6bdf 100644 (file)
@@ -1080,7 +1080,7 @@ mt7530_probe(struct mdio_device *mdiodev)
        mutex_init(&priv->reg_mutex);
        dev_set_drvdata(&mdiodev->dev, priv);
 
-       return dsa_register_switch(priv->ds, &mdiodev->dev);
+       return dsa_register_switch(priv->ds);
 }
 
 static void
index 070e82ac61322886db5323a840463f871df239b9..7cf470c3e6625bd03343ca8dd2c48b7dcf38b1ce 100644 (file)
@@ -3884,7 +3884,7 @@ static int mv88e6xxx_register_switch(struct mv88e6xxx_chip *chip)
 
        dev_set_drvdata(dev, ds);
 
-       return dsa_register_switch(ds, dev);
+       return dsa_register_switch(ds);
 }
 
 static void mv88e6xxx_unregister_switch(struct mv88e6xxx_chip *chip)
index 0f6a011d8ed12615d37852fac14ba6257b810ea6..b3bee7eab45fb47da33d57897a03928d14ff22f7 100644 (file)
@@ -958,7 +958,7 @@ qca8k_sw_probe(struct mdio_device *mdiodev)
        mutex_init(&priv->reg_mutex);
        dev_set_drvdata(&mdiodev->dev, priv);
 
-       return dsa_register_switch(priv->ds, &mdiodev->dev);
+       return dsa_register_switch(priv->ds);
 }
 
 static void
index c0e567c0c824332bc331a0930f97225b5ca0f0f3..d9bd6939229aca3b3abe982d32194627ea18cab5 100644 (file)
@@ -480,7 +480,7 @@ static inline bool netdev_uses_dsa(struct net_device *dev)
 
 struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n);
 void dsa_unregister_switch(struct dsa_switch *ds);
-int dsa_register_switch(struct dsa_switch *ds, struct device *dev);
+int dsa_register_switch(struct dsa_switch *ds);
 #ifdef CONFIG_PM_SLEEP
 int dsa_switch_suspend(struct dsa_switch *ds);
 int dsa_switch_resume(struct dsa_switch *ds);
index 4301f52e4f5a9abb6048f6131350bfda3a038156..c0a4576db4a261815cb73ceb8a8eb9e4c6f8d482 100644 (file)
@@ -686,10 +686,10 @@ static struct device_node *dsa_get_ports(struct dsa_switch *ds,
        return ports;
 }
 
-static int _dsa_register_switch(struct dsa_switch *ds, struct device *dev)
+static int _dsa_register_switch(struct dsa_switch *ds)
 {
-       struct dsa_chip_data *pdata = dev->platform_data;
-       struct device_node *np = dev->of_node;
+       struct dsa_chip_data *pdata = ds->dev->platform_data;
+       struct device_node *np = ds->dev->of_node;
        struct dsa_switch_tree *dst;
        struct device_node *ports;
        u32 tree, index;
@@ -803,12 +803,12 @@ struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n)
 }
 EXPORT_SYMBOL_GPL(dsa_switch_alloc);
 
-int dsa_register_switch(struct dsa_switch *ds, struct device *dev)
+int dsa_register_switch(struct dsa_switch *ds)
 {
        int err;
 
        mutex_lock(&dsa2_mutex);
-       err = _dsa_register_switch(ds, dev);
+       err = _dsa_register_switch(ds);
        mutex_unlock(&dsa2_mutex);
 
        return err;