diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-05-27 01:12:51 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-31 19:35:43 +0300 |
commit | 23c9ee4934e7a79b49151d0f05c24117d69c73fe (patch) | |
tree | d4c5a136738596efc5427533a49c7b030b95fb3b /drivers/net/dsa/b53/b53_common.c | |
parent | 9525cc53aa8a5b90a1cd3c3cc7f2a771baa4a544 (diff) | |
download | linux-23c9ee4934e7a79b49151d0f05c24117d69c73fe.tar.xz |
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: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/b53/b53_common.c')
-rw-r--r-- | drivers/net/dsa/b53/b53_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/b53/b53_common.c b/drivers/net/dsa/b53/b53_common.c index 6a5648a9cb09..e68d368e20ac 100644 --- a/drivers/net/dsa/b53/b53_common.c +++ b/drivers/net/dsa/b53/b53_common.c @@ -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); |