diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-05-26 18:12:51 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-31 12:35:43 -0400 |
commit | 23c9ee4934e7a79b49151d0f05c24117d69c73fe (patch) | |
tree | d4c5a136738596efc5427533a49c7b030b95fb3b /include/net/dsa.h | |
parent | 9525cc53aa8a5b90a1cd3c3cc7f2a771baa4a544 (diff) | |
download | lwn-23c9ee4934e7a79b49151d0f05c24117d69c73fe.tar.gz lwn-23c9ee4934e7a79b49151d0f05c24117d69c73fe.zip |
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 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index c0e567c0c824..d9bd6939229a 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -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); |