Skip to content

Commit

Permalink
net: wifi: Fix conn_mgr binding
Browse files Browse the repository at this point in the history
Fix missing conn_mgr binding for Wi-Fi/nrf700x.

Signed-off-by: Georges Oates_Larsen <[email protected]>
  • Loading branch information
glarsennordic authored and simensrostad committed Oct 22, 2024
1 parent 07760be commit 55a0c3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions subsys/net/l2_wifi_if_conn/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
menuconfig L2_WIFI_CONNECTIVITY
bool "L2 Wi-Fi Connectivity"
depends on NET_CONNECTION_MANAGER
select NET_CONNECTION_MANAGER_CONNECTIVITY_WIFI_MGMT

if L2_WIFI_CONNECTIVITY

Expand Down
2 changes: 1 addition & 1 deletion subsys/net/l2_wifi_if_conn/l2_wifi_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ static struct conn_mgr_conn_api l2_wifi_conn_api = {
.init = net_l2_wifi_init,
};

CONN_MGR_CONN_DEFINE(L2_CONN_WLAN0, &l2_wifi_conn_api);
CONN_MGR_CONN_DEFINE(CONNECTIVITY_WIFI_MGMT, &l2_wifi_conn_api);

0 comments on commit 55a0c3c

Please sign in to comment.