diff options
author | David S. Miller <davem@davemloft.net> | 2010-09-21 18:17:19 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-21 18:17:19 -0700 |
commit | a0741ca949692904646c310573754859cba09bf1 (patch) | |
tree | fc95067d8bfee5f6c6c747c74d1d6547d70199a3 /net/mac80211/driver-ops.h | |
parent | 9e2e8f14d48dbb6c31aeb739ae4fc8997b9dfe84 (diff) | |
parent | b618f6f885579a6237e5bf4582fa6167972ddef4 (diff) |
Merge branch 'for-davem' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r-- | net/mac80211/driver-ops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index 6064b7b09e0..16983825f8e 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h @@ -56,14 +56,14 @@ static inline int drv_add_interface(struct ieee80211_local *local, static inline int drv_change_interface(struct ieee80211_local *local, struct ieee80211_sub_if_data *sdata, - enum nl80211_iftype type) + enum nl80211_iftype type, bool p2p) { int ret; might_sleep(); - trace_drv_change_interface(local, sdata, type); - ret = local->ops->change_interface(&local->hw, &sdata->vif, type); + trace_drv_change_interface(local, sdata, type, p2p); + ret = local->ops->change_interface(&local->hw, &sdata->vif, type, p2p); trace_drv_return_int(local, ret); return ret; } |