mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			919 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			919 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
 | |
| Date: Sun, 19 Jun 2016 01:55:57 +0200
 | |
| Subject: [PATCH] brcmfmac: add missing break when deleting P2P_DEVICE
 | |
| MIME-Version: 1.0
 | |
| Content-Type: text/plain; charset=UTF-8
 | |
| Content-Transfer-Encoding: 8bit
 | |
| 
 | |
| We obviously don't want to fall through in that switch. With this change
 | |
| 1) We wait for event (triggered by p2p_disc) as expected
 | |
| 2) We remove interface manually on timeout
 | |
| 3) We return 0 on success instead of -ENOTSUPP
 | |
| 
 | |
| Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
 | |
| Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
 | |
| ---
 | |
| 
 | |
| --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/p2p.c
 | |
| +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/p2p.c
 | |
| @@ -2263,6 +2263,8 @@ int brcmf_p2p_del_vif(struct wiphy *wiph
 | |
|  			return 0;
 | |
|  		brcmf_p2p_cancel_remain_on_channel(vif->ifp);
 | |
|  		brcmf_p2p_deinit_discovery(p2p);
 | |
| +		break;
 | |
| +
 | |
|  	default:
 | |
|  		return -ENOTSUPP;
 | |
|  	}
 |