unbreak portmapping - typo fix

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 36293
This commit is contained in:
John Crispin 2013-04-09 14:39:01 +00:00
parent 7ca7bc501e
commit fb47fd0d6b
2 changed files with 7 additions and 7 deletions

View File

@ -987,7 +987,7 @@ of_switch_load_portmap(struct switch_dev *dev)
const char *segment;
int size, phys;
if (of_device_is_compatible(port, "swconfig,port"))
if (!of_device_is_compatible(port, "swconfig,port"))
continue;
if (of_property_read_string(port, "swconfig,segment", &segment))

View File

@ -94,28 +94,28 @@
ralink,portmap = <0x2f>;
port@0 {
conpatible = "swconfig,port";
compatible = "swconfig,port";
swconfig,segment = "lan";
swconfig,portmap = <0 4>;
};
port@1 {
conpatible = "swconfig,port";
compatible = "swconfig,port";
swconfig,segment = "lan";
swconfig,portmap = <1 3>;
};
port@2 {
conpatible = "swconfig,port";
compatible = "swconfig,port";
swconfig,segment = "lan";
swconfig,portmap = <2 2>;
};
port@3 {
conpatible = "swconfig,port";
compatible = "swconfig,port";
swconfig,segment = "lan";
swconfig,portmap = <3 1>;
};
port@4 {
conpatible = "swconfig,port";
swconfig,segment = "lan";
compatible = "swconfig,port";
swconfig,segment = "wan";
swconfig,portmap = <4 0>;
};
};