From c84a3ffb4d1db1d9162eff5b51b18c71415367d7 Mon Sep 17 00:00:00 2001 From: m-dema <60389195+m-dema@users.noreply.github.com> Date: Thu, 6 May 2021 17:05:46 +0200 Subject: [PATCH] Fix inconsistent function name the function is different in header declaration (EOE_ecat_get_mac) --- soes/esc_eoe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soes/esc_eoe.c b/soes/esc_eoe.c index 6332cf8..ab5271e 100644 --- a/soes/esc_eoe.c +++ b/soes/esc_eoe.c @@ -217,7 +217,7 @@ static void EOE_ip_byte_to_uint32 (uint8_t * byte_ip, eoe_ip4_addr_t * ip) * @param[out] mac = variable to store mac in, should fit EOE_ETHADDR_LENGTH * @return 0= if we succeed, -1 if not set */ -int EOE_get_mac(uint8_t port, uint8_t mac[]) +int EOE_ecat_get_mac(uint8_t port, uint8_t mac[]) { int ret = -1; int port_ix;