diff options
author | Alex Marginean <alexandru.marginean@nxp.com> | 2019-11-25 17:15:11 +0200 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2019-12-09 09:47:43 -0600 |
commit | a5d32c37d9eec2f819273536a5600a0fbde09acb (patch) | |
tree | b5baa429e020e0e8ed89961226b248d2ec062a71 /include/miiphy.h | |
parent | 16cdc2daa07986243751a9f545aa287c60e04ced (diff) | |
download | u-boot-a5d32c37d9eec2f819273536a5600a0fbde09acb.zip u-boot-a5d32c37d9eec2f819273536a5600a0fbde09acb.tar.gz u-boot-a5d32c37d9eec2f819273536a5600a0fbde09acb.tar.bz2 |
net: mdio-uclass: rename arguments of dm_mdio_phy_connect for clarity
Renamed dm_mdio_phy_connect arguments dev to mdiodev and addr to phyaddr
for a bit more clarity and consistency with the following patches.
Also use NULL instead of 0 on error return path.
Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/miiphy.h')
-rw-r--r-- | include/miiphy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/miiphy.h b/include/miiphy.h index 9b97d09..94bf0da 100644 --- a/include/miiphy.h +++ b/include/miiphy.h @@ -154,14 +154,14 @@ void dm_mdio_probe_devices(void); /** * dm_mdio_phy_connect - Wrapper over phy_connect for DM MDIO * - * @dev: mdio dev - * @addr: PHY address on MDIO bus + * @mdiodev: mdio device the PHY is accesible on + * @phyaddr: PHY address on MDIO bus * @ethdev: ethernet device to connect to the PHY * @interface: MAC-PHY protocol * * @return pointer to phy_device, or 0 on error */ -struct phy_device *dm_mdio_phy_connect(struct udevice *dev, int addr, +struct phy_device *dm_mdio_phy_connect(struct udevice *mdiodev, int phyaddr, struct udevice *ethdev, phy_interface_t interface); |