4.2-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Mateusz Kulikowski <mateusz.kulikow...@gmail.com>

commit 435009bba4d0449b611bc24ae5c9636ac5b2a00e upstream.

This patch fixes issue generated by commit ca93dcba3a92
("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: Mateusz Kulikowski <mateusz.kulikow...@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>

---
 drivers/staging/rtl8192e/rtl8192e/rtl_core.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
+++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c
@@ -1826,8 +1826,8 @@ void rtl8192_hard_data_xmit(struct sk_bu
                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));


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to