Re: [PATCH net-next] net: dsa: remove dev arg of dsa_register_switch

2017-05-31 Thread David Miller
From: Vivien Didelot Date: Fri, 26 May 2017 18:12:51 -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 >

Re: [PATCH net-next] net: dsa: remove dev arg of dsa_register_switch

2017-05-31 Thread David Miller
From: Vivien Didelot Date: Fri, 26 May 2017 18:12:51 -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

[PATCH net-next] net: dsa: remove dev arg of dsa_register_switch

2017-05-26 Thread Vivien Didelot
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

[PATCH net-next] net: dsa: remove dev arg of dsa_register_switch

2017-05-26 Thread Vivien Didelot
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