diff options
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg80211.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index d9f08f65f7a5..d81e730962cc 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -281,9 +281,13 @@ struct ieee80211_supported_band { | |||
281 | /** | 281 | /** |
282 | * struct vif_params - describes virtual interface parameters | 282 | * struct vif_params - describes virtual interface parameters |
283 | * @use_4addr: use 4-address frames | 283 | * @use_4addr: use 4-address frames |
284 | * @macaddr: address to use for this virtual interface. This will only | ||
285 | * be used for non-netdevice interfaces. If this parameter is set | ||
286 | * to zero address the driver may determine the address as needed. | ||
284 | */ | 287 | */ |
285 | struct vif_params { | 288 | struct vif_params { |
286 | int use_4addr; | 289 | int use_4addr; |
290 | u8 macaddr[ETH_ALEN]; | ||
287 | }; | 291 | }; |
288 | 292 | ||
289 | /** | 293 | /** |