From 0979ff697aff7eeb709112173b6ed2030500663b Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 6 Dec 2023 12:18:02 -0800 Subject: [PATCH] netdev: station: remove NETDEV_EVENT_FT_ROAMED The notification for roaming success/failure is now handled with the connect callback. --- src/netdev.h | 1 - src/station.c | 6 ------ 2 files changed, 7 deletions(-) diff --git a/src/netdev.h b/src/netdev.h index fb31b571..d87f09f4 100644 --- a/src/netdev.h +++ b/src/netdev.h @@ -50,7 +50,6 @@ enum netdev_event { NETDEV_EVENT_RSSI_THRESHOLD_HIGH, NETDEV_EVENT_RSSI_LEVEL_NOTIFY, NETDEV_EVENT_PACKET_LOSS_NOTIFY, - NETDEV_EVENT_FT_ROAMED, NETDEV_EVENT_BEACON_LOSS_NOTIFY, }; diff --git a/src/station.c b/src/station.c index 52d87c84..73de26bb 100644 --- a/src/station.c +++ b/src/station.c @@ -3444,12 +3444,6 @@ static void station_netdev_event(struct netdev *netdev, enum netdev_event event, case NETDEV_EVENT_PACKET_LOSS_NOTIFY: station_packets_lost(station, l_get_u32(event_data)); break; - case NETDEV_EVENT_FT_ROAMED: - if (L_WARN_ON(station->state != STATION_STATE_FT_ROAMING)) - return; - - station_roamed(station); - break; case NETDEV_EVENT_BEACON_LOSS_NOTIFY: station_beacon_lost(station); break;