diff options
Diffstat (limited to 'net/dsa/slave.c')
-rw-r--r-- | net/dsa/slave.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/dsa/slave.c b/net/dsa/slave.c index f83525909c57..ce26dddc8270 100644 --- a/net/dsa/slave.c +++ b/net/dsa/slave.c | |||
@@ -379,6 +379,13 @@ static int dsa_slave_get_port_parent_id(struct net_device *dev, | |||
379 | struct dsa_switch *ds = dp->ds; | 379 | struct dsa_switch *ds = dp->ds; |
380 | struct dsa_switch_tree *dst = ds->dst; | 380 | struct dsa_switch_tree *dst = ds->dst; |
381 | 381 | ||
382 | /* For non-legacy ports, devlink is used and it takes | ||
383 | * care of the name generation. This ndo implementation | ||
384 | * should be removed with legacy support. | ||
385 | */ | ||
386 | if (dp->ds->devlink) | ||
387 | return -EOPNOTSUPP; | ||
388 | |||
382 | ppid->id_len = sizeof(dst->index); | 389 | ppid->id_len = sizeof(dst->index); |
383 | memcpy(&ppid->id, &dst->index, ppid->id_len); | 390 | memcpy(&ppid->id, &dst->index, ppid->id_len); |
384 | 391 | ||