mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-23 06:02:37 +01:00
station: Make station_rssi_level_changed static
This commit is contained in:
parent
f06c3b645d
commit
ba248e028e
@ -1531,6 +1531,8 @@ static void station_ok_rssi(struct station *station)
|
||||
station->signal_low = false;
|
||||
}
|
||||
|
||||
static void station_rssi_level_changed(struct station *station);
|
||||
|
||||
static void station_netdev_event(struct netdev *netdev, enum netdev_event event,
|
||||
void *user_data)
|
||||
{
|
||||
@ -1985,7 +1987,7 @@ static void station_signal_agent_notify(struct signal_agent *agent,
|
||||
l_dbus_send(dbus_get_bus(), msg);
|
||||
}
|
||||
|
||||
void station_rssi_level_changed(struct station *station)
|
||||
static void station_rssi_level_changed(struct station *station)
|
||||
{
|
||||
struct netdev *netdev = station->netdev;
|
||||
|
||||
|
@ -73,8 +73,6 @@ void station_connect_network(struct station *station, struct network *network,
|
||||
struct l_dbus_message *message);
|
||||
int station_disconnect(struct station *station);
|
||||
|
||||
void station_rssi_level_changed(struct station *station);
|
||||
|
||||
struct station *station_find(uint32_t ifindex);
|
||||
void station_foreach(station_foreach_func_t func, void *user_data);
|
||||
struct station *station_create(struct wiphy *wiphy, struct netdev *netdev);
|
||||
|
Loading…
Reference in New Issue
Block a user