From: Glen Lee Date: Thu, 4 Feb 2016 09:15:26 +0000 (+0900) Subject: staging: wilc1000: fix bug on p2p connection X-Git-Tag: next-20160210~18^2~299 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=783d07c1bf8b8e6364aa2e90c83addb8001817e1;p=karo-tx-linux.git staging: wilc1000: fix bug on p2p connection In case of action frame, size -7 is correct, but in this case, size should be used as it is. Signed-off-by: Glen Lee Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index e9db04958030..4038f7db1b35 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -1728,7 +1728,7 @@ void WILC_WFI_p2p_rx (struct net_device *dev, u8 *buff, u32 size) } } - cfg80211_rx_mgmt(priv->wdev, s32Freq, 0, buff, size - 7, 0); + cfg80211_rx_mgmt(priv->wdev, s32Freq, 0, buff, size, 0); } }