Commit e7f8f1df authored by Aymen Qader's avatar Aymen Qader Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: Remove unnecessary null check



Remove the unnecessary socket buffer null check in hostif_data_request.
There is already an appropriate null check in the calling function:

(ks_wlan_net.c) ks_wlan_start_xmit

Signed-off-by: default avatarAymen Qader <qader.aymen@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 95666634
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1023,7 +1023,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
	    priv->wpa.mic_failure.stop) {
		if (netif_queue_stopped(priv->net_dev))
			netif_wake_queue(priv->net_dev);
		if (skb)

		dev_kfree_skb(skb);

		return 0;