diff options
| author | Guenter Roeck <[email protected]> | 2015-04-29 17:56:15 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2015-04-29 19:35:04 +0000 |
| commit | 50d4964f1d0411d82cca593f2664bfab7f82dbbf (patch) | |
| tree | 186530c55c50f3eb9e5c3c6d53be1fc52d594acf /net/dsa/dsa.c | |
| parent | net: macb: Fix race condition in driver when Rx frame is dropped (diff) | |
| download | kernel-50d4964f1d0411d82cca593f2664bfab7f82dbbf.tar.gz kernel-50d4964f1d0411d82cca593f2664bfab7f82dbbf.zip | |
net: dsa: Fix scope of eeprom-length property
eeprom-length is a switch property, not a dsa property, and thus
needs to be attached to the switch node, not to the dsa node.
Reported-by: Andrew Lunn <[email protected]>
Fixes: 6793abb4e849 ("net: dsa: Add support for switch EEPROM access")
Signed-off-by: Guenter Roeck <[email protected]>
Acked-by: Andrew Lunn <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/dsa/dsa.c')
| -rw-r--r-- | net/dsa/dsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index 079a224471e7..e6f6cc3a1bcf 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -633,7 +633,7 @@ static int dsa_of_probe(struct device *dev) if (cd->sw_addr > PHY_MAX_ADDR) continue; - if (!of_property_read_u32(np, "eeprom-length", &eeprom_len)) + if (!of_property_read_u32(child, "eeprom-length", &eeprom_len)) cd->eeprom_len = eeprom_len; for_each_available_child_of_node(child, port) { |
