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

Commit e02aa3ee authored by Jes Sorensen's avatar Jes Sorensen Committed by Kalle Valo
Browse files

rtl8xxxu: Simplify code setting TX buffer boundary



With all devices now offering fops->total_page_num, get rid of the
if mess for setting the TX buffer boundary.

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent efeb8ce7
Loading
Loading
Loading
Loading
+1 −7
Original line number Original line Diff line number Diff line
@@ -3968,13 +3968,7 @@ static int rtl8xxxu_init_device(struct ieee80211_hw *hw)
		/*
		/*
		 * Set TX buffer boundary
		 * Set TX buffer boundary
		 */
		 */
		if (priv->rtl_chip == RTL8192E)
		val8 = priv->fops->total_page_num + 1;
			val8 = TX_TOTAL_PAGE_NUM_8192E + 1;
		else
			val8 = TX_TOTAL_PAGE_NUM + 1;

		if (priv->rtl_chip == RTL8723B)
			val8 -= 1;


		rtl8xxxu_write8(priv, REG_TXPKTBUF_BCNQ_BDNY, val8);
		rtl8xxxu_write8(priv, REG_TXPKTBUF_BCNQ_BDNY, val8);
		rtl8xxxu_write8(priv, REG_TXPKTBUF_MGQ_BDNY, val8);
		rtl8xxxu_write8(priv, REG_TXPKTBUF_MGQ_BDNY, val8);