Commit bbf2b164 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192e: Remove unused variable is_mesh from rtllib_send_probe

parent 206e69b6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -449,7 +449,7 @@ void rtllib_DisableIntelPromiscuousMode(struct net_device *dev,
}
EXPORT_SYMBOL(rtllib_DisableIntelPromiscuousMode);

static void rtllib_send_probe(struct rtllib_device *ieee, u8 is_mesh)
static void rtllib_send_probe(struct rtllib_device *ieee)
{
	struct sk_buff *skb;

@@ -464,8 +464,8 @@ static void rtllib_send_probe_requests(struct rtllib_device *ieee, u8 is_mesh)
{
	if (ieee->active_scan && (ieee->softmac_features &
	    IEEE_SOFTMAC_PROBERQ)) {
		rtllib_send_probe(ieee, 0);
		rtllib_send_probe(ieee, 0);
		rtllib_send_probe(ieee);
		rtllib_send_probe(ieee);
	}
}