Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23c9ee49 authored by Vivien Didelot's avatar Vivien Didelot Committed by David S. Miller
Browse files

net: dsa: remove dev arg of dsa_register_switch



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: default avatarVivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9525cc53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);

+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -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,
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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)
Loading