diff options
author | Tom Rini <trini@konsulko.com> | 2022-04-06 11:51:00 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-06 11:51:00 -0400 |
commit | 88b6b33253ce4443f23e54ef5424eeb90482ae75 (patch) | |
tree | 53172e01fd260c3e8c612429a7893b44a5953f90 /include/dm/ofnode.h | |
parent | 59bffec43a657598b194b9eb30dc01eec06078c7 (diff) | |
parent | d23f29084018a3aa5ca6399a08c12eb7617ffa55 (diff) |
Merge branch '2022-04-06-assorted-updates'
- Add DM_PMIC support to TPS65217 and migrate some platforms to it.
- mkimage verification fixes
- DM rST fix, add missing flag when linking u-boot-elf.o
Diffstat (limited to 'include/dm/ofnode.h')
-rw-r--r-- | include/dm/ofnode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index 744dffe0a2..6a996d9521 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -900,10 +900,10 @@ int ofnode_read_pci_vendev(ofnode node, u16 *vendor, u16 *device); * Look at the compatible property of a device node that represents a eth phy * device and extract phy vendor id and device id from it. * - * @param node node to examine - * @param vendor vendor id of the eth phy device - * @param device device id of the eth phy device - * @return 0 if ok, negative on error + * @node: node to examine + * @vendor: vendor id of the eth phy device + * @device: device id of the eth phy device + * Return: 0 if ok, negative on error */ int ofnode_read_eth_phy_id(ofnode node, u16 *vendor, u16 *device); |