rtl8xxxu: Fix incorrect test for auto LLT failure
authorJes Sorensen <Jes.Sorensen@redhat.com>
Mon, 29 Feb 2016 22:04:07 +0000 (17:04 -0500)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 10 Mar 2016 13:28:54 +0000 (15:28 +0200)
The logic for testing auto load failure in rtl8xxxu_auto_llt_table()
was inverted.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.c

index ad5b15cb07b6d5fa7afb7fca80f84187b56abacc..68d6bb89f719743218db48a573ea5227c7933210 100644 (file)
@@ -2781,7 +2781,6 @@ static int rtl8xxxu_auto_llt_table(struct rtl8xxxu_priv *priv, u8 last_tx_page)
        int i;
 
        val32 = rtl8xxxu_read32(priv, REG_AUTO_LLT);
-       pr_info("AUTO_LLT = %08x\n", val32);
        val32 |= AUTO_LLT_INIT_LLT;
        rtl8xxxu_write32(priv, REG_AUTO_LLT, val32);
 
@@ -2792,12 +2791,10 @@ static int rtl8xxxu_auto_llt_table(struct rtl8xxxu_priv *priv, u8 last_tx_page)
                usleep_range(2, 4);
        }
 
-       if (i) {
+       if (!i) {
                ret = -EBUSY;
                dev_warn(&priv->udev->dev, "LLT table init failed\n");
        }
-       else
-               dev_warn(&priv->udev->dev, "LLT table init success\n");
 
        return ret;
 }
This page took 0.030576 seconds and 5 git commands to generate.