Remove unnecessary ifname parameter from set_generic_elem() driver op
This commit is contained in:
parent
d5dd016a8a
commit
aa48451698
7 changed files with 8 additions and 11 deletions
|
@ -1251,7 +1251,6 @@ struct wpa_driver_ops {
|
|||
|
||||
/**
|
||||
* set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
|
||||
* @ifname: The interface name (main or virtual BSS)
|
||||
* @priv: Private driver interface data
|
||||
* @elem: Information elements
|
||||
* @elem_len: Length of the elem buffer in octets
|
||||
|
@ -1262,8 +1261,7 @@ struct wpa_driver_ops {
|
|||
* undefined (set to %NULL) if the driver uses the Beacon template from
|
||||
* set_beacon().
|
||||
*/
|
||||
int (*set_generic_elem)(const char *ifname, void *priv, const u8 *elem,
|
||||
size_t elem_len);
|
||||
int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
|
||||
|
||||
/**
|
||||
* read_sta_data - Fetch station data (AP only)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue