net: dsa: Fix inverted test for multiple CPU interface
authorAndrew Lunn <andrew@lunn.ch>
Sun, 22 Jan 2017 21:16:45 +0000 (22:16 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Jan 2017 18:33:50 +0000 (13:33 -0500)
Remove the wrong !, otherwise we get false positives about having
multiple CPU interfaces.

Fixes: b22de490869d ("net: dsa: store CPU switch structure in the tree")
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dsa/dsa.c

index 77cb787..1f3afeb 100644 (file)
@@ -225,7 +225,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent)
                        continue;
 
                if (!strcmp(name, "cpu")) {
-                       if (!dst->cpu_switch) {
+                       if (dst->cpu_switch) {
                                netdev_err(dst->master_netdev,
                                           "multiple cpu ports?!\n");
                                return -EINVAL;