diff options
author | Chris Packham <judge.packham@gmail.com> | 2018-11-26 21:00:28 +1300 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2019-01-24 11:35:29 -0600 |
commit | 1a4af5c562fdb9f5a884a53f136f2b2075ffd1d8 (patch) | |
tree | 930fb7f2c560b83bfc5a78b5f10a2eb2143570c1 /include | |
parent | e57c9fdb042741e4049661074c25e7b7ff8a68cc (diff) | |
download | u-boot-1a4af5c562fdb9f5a884a53f136f2b2075ffd1d8.tar.gz |
net: move ether_crc to tsec driver
ether_crc was added to the core net code in commit 53a5c424bf86
("multicast tftp: RFC2090") so that other drivers could use it. However
the only current user of it is tsec.c so move it there.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net.h b/include/net.h index 51c099dae2..359bfb5ef6 100644 --- a/include/net.h +++ b/include/net.h @@ -289,7 +289,6 @@ const char *eth_get_name(void); /* get name of current device */ #ifdef CONFIG_MCAST_TFTP int eth_mcast_join(struct in_addr mcast_addr, int join); -u32 ether_crc(size_t len, unsigned char const *p); #endif |