Remove unnecessary ifname parameter from hapd_get_ssid/hapd_set_ssid

This commit is contained in:
Jouni Malinen 2010-03-07 11:36:45 +02:00
parent aa48451698
commit 8709de1ae8
7 changed files with 14 additions and 20 deletions

View file

@ -1148,7 +1148,7 @@ madwifi_deinit(void *priv)
}
static int
madwifi_set_ssid(const char *ifname, void *priv, const u8 *buf, int len)
madwifi_set_ssid(void *priv, const u8 *buf, int len)
{
struct madwifi_driver_data *drv = priv;
struct iwreq iwr;
@ -1168,7 +1168,7 @@ madwifi_set_ssid(const char *ifname, void *priv, const u8 *buf, int len)
}
static int
madwifi_get_ssid(const char *ifname, void *priv, u8 *buf, int len)
madwifi_get_ssid(void *priv, u8 *buf, int len)
{
struct madwifi_driver_data *drv = priv;
struct iwreq iwr;