Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 435009bb authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192e: Fix log spamming in rtl8192_hard_data_xmit



This patch fixes issue generated by commit ca93dcba
("staging: rtl8192e: Remove assert() macro")

One negation was missed in conversion, therefore
asserted message was always printed.
For 1MB file downloaded via http, ~500 messages
were generated.

Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bda9e249
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1642,8 +1642,8 @@ static void rtl8192_hard_data_xmit(struct sk_buff *skb, struct net_device *dev,
		return;
	}

	if (queue_index != TXCMD_QUEUE)
		netdev_warn(dev, "%s(): queue index != TXCMD_QUEUE\n",
	if (queue_index == TXCMD_QUEUE)
		netdev_warn(dev, "%s(): queue index == TXCMD_QUEUE\n",
			    __func__);

	memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));