diff options
author | Tom Rini <trini@konsulko.com> | 2020-05-11 08:27:55 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-11 08:27:55 -0400 |
commit | 951db64186b2b9ad2e3ee30e2093deea005bdd8a (patch) | |
tree | 044159f0c87de5022dc6d83f300e27eec2fbc1fd /include/generic-phy.h | |
parent | c5c657644bc35fd6b3d6e5517698721e90646b8d (diff) | |
parent | 8af1caa23728ef689d095eec1ec4e6f1d46f50e4 (diff) |
Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-spi
- zap lpc32xx_ssp driver (Jagan)
- rename of phy nodev call (Jagan)
- iopoll with sleep_us (Jagan)
- MX25R6435F flash (Ye Li)
Diffstat (limited to 'include/generic-phy.h')
-rw-r--r-- | include/generic-phy.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/generic-phy.h b/include/generic-phy.h index 55629ae0b41..5ab34cda03d 100644 --- a/include/generic-phy.h +++ b/include/generic-phy.h @@ -213,12 +213,15 @@ int generic_phy_get_by_index(struct udevice *user, int index, struct phy *phy); /** - * generic_phy_get_by_node() - Get a PHY device by integer index on ofnode + * generic_phy_get_by_index_nodev() - Get a PHY device by integer index + * without a device * - * @node: the device node + * @node: The client ofnode. * @index: The index in the list of available PHYs * @phy: A pointer to the PHY port * + * This is a version of generic_phy_get_by_index() that does not use a device. + * * This looks up a PHY device for a client device based on its ofnode and on * its position in the list of the possible PHYs. * @@ -237,7 +240,7 @@ int generic_phy_get_by_index(struct udevice *user, int index, * * @return 0 if OK, or a negative error code */ -int generic_phy_get_by_node(ofnode node, int index, struct phy *phy); +int generic_phy_get_by_index_nodev(ofnode node, int index, struct phy *phy); /** * generic_phy_get_by_name() - Get a PHY device by its name. |