]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: mscc: fix PHYs using the vsc8574_probe
authorAntoine Tenart <antoine.tenart@bootlin.com>
Fri, 29 May 2020 09:49:09 +0000 (11:49 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 29 May 2020 19:44:27 +0000 (12:44 -0700)
commit48eb65635a6a7366914a746c4e92cd0c31cc4d46
treeac15ea994eb0f3847e9339f18411647aecb66ecb
parent2dadebc6c41c1d587587b19c6c2ffd9e8a6ee5a2
net: phy: mscc: fix PHYs using the vsc8574_probe

PHYs using the vsc8574_probe fail to be initialized and their
config_init return -EIO leading to errors like:
"could not attach PHY: -5".

This is because when the conversion of the MSCC PHY driver to use the
shared PHY package helpers was done, the base address retrieval and the
base PHY read and write helpers in the driver were modified. In
particular, the base address retrieval logic was moved from the
config_init to the probe. But the vsc8574_probe was forgotten. This
patch fixes it.

Fixes: fe3ed5daf7c9 ("net: phy: mscc: use phy_package_shared")
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Reviewed-by: Michael Walle <michael@walle.cc>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mscc/mscc_main.c