rtl8xxxu: Fix off by one error calculating pubq
authorJes Sorensen <Jes.Sorensen@redhat.com>
Wed, 21 Sep 2016 01:19:26 +0000 (21:19 -0400)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 26 Sep 2016 17:41:35 +0000 (20:41 +0300)
This was detected tracing the 8188eu driver, but doesn't seem to make
any difference when using it.

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

index ca92022..98fcd7b 100644 (file)
@@ -3869,7 +3869,7 @@ static void rtl8xxxu_init_queue_reserved_page(struct rtl8xxxu_priv *priv)
        val32 = (nq << RQPN_NPQ_SHIFT) | (eq << RQPN_EPQ_SHIFT);
        rtl8xxxu_write32(priv, REG_RQPN_NPQ, val32);
 
-       pubq = fops->total_page_num - hq - lq - nq;
+       pubq = fops->total_page_num - hq - lq - nq - 1;
 
        val32 = RQPN_LOAD;
        val32 |= (hq << RQPN_HI_PQ_SHIFT);