|
@@ -69,6 +69,11 @@ static const char *mv88e6060_get_name(struct mii_bus *bus, int sw_addr)
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
|
+static enum dsa_tag_protocol mv88e6060_get_tag_protocol(struct dsa_switch *ds)
|
|
|
+{
|
|
|
+ return DSA_TAG_PROTO_TRAILER;
|
|
|
+}
|
|
|
+
|
|
|
static const char *mv88e6060_drv_probe(struct device *dsa_dev,
|
|
|
struct device *host_dev, int sw_addr,
|
|
|
void **_priv)
|
|
@@ -248,7 +253,7 @@ mv88e6060_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val)
|
|
|
}
|
|
|
|
|
|
static struct dsa_switch_driver mv88e6060_switch_driver = {
|
|
|
- .tag_protocol = DSA_TAG_PROTO_TRAILER,
|
|
|
+ .get_tag_protocol = mv88e6060_get_tag_protocol,
|
|
|
.probe = mv88e6060_drv_probe,
|
|
|
.setup = mv88e6060_setup,
|
|
|
.set_addr = mv88e6060_set_addr,
|