diff options
author | Andrew Lunn <andrew@lunn.ch> | 2016-06-04 21:17:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-04 14:29:53 -0700 |
commit | 66472fc04e8be62858f29c7798ed17e984c1ab3b (patch) | |
tree | 7f1dd73e2bf0c8dac71112e707a4588e67d678e4 /net | |
parent | 4a7704ffa86705b0580b6473c407b7b7618e072d (diff) | |
download | op-kernel-dev-66472fc04e8be62858f29c7798ed17e984c1ab3b.zip op-kernel-dev-66472fc04e8be62858f29c7798ed17e984c1ab3b.tar.gz |
net: dsa: Copy the routing table into the switch structure
The new binding will not have a chip data structure, it will place the
routing directly into the switch structure. To enable backwards
compatibility, copy the routing from the chip data into the switch
structure.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/dsa/dsa.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index 6177dd7..bfe1d03 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -297,6 +297,8 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent) dst->tag_protocol = drv->tag_protocol; } + memcpy(ds->rtable, cd->rtable, sizeof(ds->rtable)); + /* * Do basic register setup. */ |