diff options
Diffstat (limited to 'drivers/net/dsa/b53/b53_common.c')
| -rw-r--r-- | drivers/net/dsa/b53/b53_common.c | 21 | 
1 files changed, 9 insertions, 12 deletions
| diff --git a/drivers/net/dsa/b53/b53_common.c b/drivers/net/dsa/b53/b53_common.c index fa0eece21eef..e68d368e20ac 100644 --- a/drivers/net/dsa/b53/b53_common.c +++ b/drivers/net/dsa/b53/b53_common.c @@ -29,7 +29,6 @@  #include <linux/etherdevice.h>  #include <linux/if_bridge.h>  #include <net/dsa.h> -#include <net/switchdev.h>  #include "b53_regs.h"  #include "b53_priv.h" @@ -1056,7 +1055,7 @@ EXPORT_SYMBOL(b53_vlan_del);  int b53_vlan_dump(struct dsa_switch *ds, int port,  		  struct switchdev_obj_port_vlan *vlan, -		  int (*cb)(struct switchdev_obj *obj)) +		  switchdev_obj_dump_cb_t *cb)  {  	struct b53_device *dev = ds->priv;  	u16 vid, vid_start = 0, pvid; @@ -1282,10 +1281,9 @@ static void b53_arl_search_rd(struct b53_device *dev, u8 idx,  	b53_arl_to_entry(ent, mac_vid, fwd_entry);  } -static int b53_fdb_copy(struct net_device *dev, int port, -			const struct b53_arl_entry *ent, +static int b53_fdb_copy(int port, const struct b53_arl_entry *ent,  			struct switchdev_obj_port_fdb *fdb, -			int (*cb)(struct switchdev_obj *obj)) +			switchdev_obj_dump_cb_t *cb)  {  	if (!ent->is_valid)  		return 0; @@ -1302,10 +1300,9 @@ static int b53_fdb_copy(struct net_device *dev, int port,  int b53_fdb_dump(struct dsa_switch *ds, int port,  		 struct switchdev_obj_port_fdb *fdb, -		 int (*cb)(struct switchdev_obj *obj)) +		 switchdev_obj_dump_cb_t *cb)  {  	struct b53_device *priv = ds->priv; -	struct net_device *dev = ds->ports[port].netdev;  	struct b53_arl_entry results[2];  	unsigned int count = 0;  	int ret; @@ -1321,13 +1318,13 @@ int b53_fdb_dump(struct dsa_switch *ds, int port,  			return ret;  		b53_arl_search_rd(priv, 0, &results[0]); -		ret = b53_fdb_copy(dev, port, &results[0], fdb, cb); +		ret = b53_fdb_copy(port, &results[0], fdb, cb);  		if (ret)  			return ret;  		if (priv->num_arl_entries > 2) {  			b53_arl_search_rd(priv, 1, &results[1]); -			ret = b53_fdb_copy(dev, port, &results[1], fdb, cb); +			ret = b53_fdb_copy(port, &results[1], fdb, cb);  			if (ret)  				return ret; @@ -1344,7 +1341,7 @@ EXPORT_SYMBOL(b53_fdb_dump);  int b53_br_join(struct dsa_switch *ds, int port, struct net_device *br)  {  	struct b53_device *dev = ds->priv; -	s8 cpu_port = ds->dst->cpu_port; +	s8 cpu_port = ds->dst->cpu_dp->index;  	u16 pvlan, reg;  	unsigned int i; @@ -1390,7 +1387,7 @@ void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)  {  	struct b53_device *dev = ds->priv;  	struct b53_vlan *vl = &dev->vlans[0]; -	s8 cpu_port = ds->dst->cpu_port; +	s8 cpu_port = ds->dst->cpu_dp->index;  	unsigned int i;  	u16 pvlan, reg, pvid; @@ -1992,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); | 
