diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 36c8b143c0c113232bcf47d6499a3982fdfaf98a (patch) | |
tree | bece8d64b485797ecfbcf1b582da2936d73c6065 /include/net.h | |
parent | b79cf1af0d1cf175c4414ea1b8465747431d77cf (diff) | |
download | u-boot-36c8b143c0c113232bcf47d6499a3982fdfaf98a.tar.gz u-boot-36c8b143c0c113232bcf47d6499a3982fdfaf98a.tar.bz2 u-boot-36c8b143c0c113232bcf47d6499a3982fdfaf98a.zip |
env: net: Move eth_parse_enetaddr() to net.c/h
This function fits better with the network subsystem, so move it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Suggested-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/net.h')
-rw-r--r-- | include/net.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/net.h b/include/net.h index 0262175c81..a54d5eeac5 100644 --- a/include/net.h +++ b/include/net.h @@ -875,4 +875,15 @@ int update_tftp(ulong addr, char *interface, char *devstring); /**********************************************************************/ +/** + * eth_parse_enetaddr() - Parse a MAC address + * + * Convert a string MAC address + * + * @addr: MAC address in aa:bb:cc:dd:ee:ff format, where each part is a 2-digit + * hex value + * @enetaddr: Place to put MAC address (6 bytes) + */ +void eth_parse_enetaddr(const char *addr, uint8_t *enetaddr); + #endif /* __NET_H__ */ |