Remove unnecessary ifname parameter from set_ap_wps_ie() driver op

This commit is contained in:
Jouni Malinen 2010-03-07 11:51:50 +02:00
parent d3e3a20565
commit 0ebdf62735
6 changed files with 6 additions and 13 deletions

View file

@ -44,8 +44,7 @@ static int hostapd_set_ap_wps_ie(struct hostapd_data *hapd,
{
if (hapd->driver == NULL || hapd->driver->set_ap_wps_ie == NULL)
return 0;
return hapd->driver->set_ap_wps_ie(hapd->conf->iface, hapd->drv_priv,
beacon, proberesp);
return hapd->driver->set_ap_wps_ie(hapd->drv_priv, beacon, proberesp);
}