diff options
Diffstat (limited to 'net/wireless/util.c')
| -rw-r--r-- | net/wireless/util.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/wireless/util.c b/net/wireless/util.c index 3416373a9c0..0c8a1e8b769 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c @@ -770,8 +770,8 @@ int cfg80211_change_iface(struct cfg80211_registered_device *rdev,  		return -EOPNOTSUPP;  	/* if it's part of a bridge, reject changing type to station/ibss */ -	if (dev->br_port && (ntype == NL80211_IFTYPE_ADHOC || -			     ntype == NL80211_IFTYPE_STATION)) +	if ((dev->priv_flags & IFF_BRIDGE_PORT) && +	    (ntype == NL80211_IFTYPE_ADHOC || ntype == NL80211_IFTYPE_STATION))  		return -EBUSY;  	if (ntype != otype) {  |