wiphy: Remove unneeded wiphy_set_ssid function

This commit is contained in:
Denis Kenzior 2014-11-07 21:37:39 -06:00
parent ca5f5b2e2b
commit 9de7c92429
2 changed files with 0 additions and 9 deletions

View File

@ -38,8 +38,6 @@
#include "src/wiphy.h"
#include "src/dbus.h"
static const char *network_ssid = NULL;
static struct l_genl *genl = NULL;
static struct l_genl_family *nl80211 = NULL;
static int scheduled_scan_interval = 60; /* in secs */
@ -1383,8 +1381,3 @@ void wiphy_notify_dellink(uint32_t index)
l_queue_foreach(wiphy_list, wiphy_check_dellink, L_UINT_TO_PTR(index));
}
void wiphy_set_ssid(const char *ssid)
{
network_ssid = ssid;
}

View File

@ -32,8 +32,6 @@ bool wiphy_exit(void);
void wiphy_notify_dellink(uint32_t index);
void wiphy_set_ssid(const char *ssid);
bool __iwd_device_append_properties(struct netdev *netdev,
struct l_dbus_message_builder *builder);
void __iwd_device_foreach(iwd_device_foreach_func func, void *user_data);