aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/legacy.c
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>2017-10-27 15:55:18 -0400
committerDavid S. Miller <davem@davemloft.net>2017-11-01 11:47:36 +0900
commit1838fa89a22cbc9ec87e995683e241a82d87e6df (patch)
tree34be73f20faedfd7c979548b5336cfcb4d61cd56 /net/dsa/legacy.c
parentnet: dsa: get master device at port parsing time (diff)
downloadlinux-dev-1838fa89a22cbc9ec87e995683e241a82d87e6df.tar.xz
linux-dev-1838fa89a22cbc9ec87e995683e241a82d87e6df.zip
net: dsa: get port name at parse time
Get the optional "label" property and assign a default one directly at parse time instead of doing it when creating the slave. For legacy, simply assign the port name stored in cd->port_names. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/dsa/legacy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dsa/legacy.c b/net/dsa/legacy.c
index ed7aae342fca..afe6e1539bd0 100644
--- a/net/dsa/legacy.c
+++ b/net/dsa/legacy.c
@@ -115,6 +115,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds,
name = cd->port_names[i];
if (name == NULL)
continue;
+ dp->name = name;
if (!strcmp(name, "cpu")) {
if (dst->cpu_dp) {