From fe61d65b2e42e4bdccdc49a9cbbd3f5248c8a5ae Mon Sep 17 00:00:00 2001 From: Georges Oates_Larsen Date: Mon, 25 Sep 2023 13:41:11 -0700 Subject: [PATCH] net: conn_mgr: Fix connectivity event enum type Connectivity event enum type was erroneously named net_event_ethernet_cmd. This PR corrects the name to net_event_conn_cmd. Signed-off-by: Georges Oates_Larsen --- include/zephyr/net/conn_mgr_connectivity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zephyr/net/conn_mgr_connectivity.h b/include/zephyr/net/conn_mgr_connectivity.h index 0af270cd5b..6bbcdeda91 100644 --- a/include/zephyr/net/conn_mgr_connectivity.h +++ b/include/zephyr/net/conn_mgr_connectivity.h @@ -39,7 +39,7 @@ extern "C" { NET_MGMT_EVENT_BIT) #define _NET_MGMT_CONN_IF_EVENT (NET_MGMT_IFACE_BIT | _NET_MGMT_CONN_BASE) -enum net_event_ethernet_cmd { +enum net_event_conn_cmd { NET_EVENT_CONN_CMD_IF_TIMEOUT = 1, NET_EVENT_CONN_CMD_IF_FATAL_ERROR, };