Commit 198fae42 authored by Phillip Potter's avatar Phillip Potter Committed by Greg Kroah-Hartman
Browse files

staging: r8188eu: convert DBG_88E call in core/rtw_cmd.c



Convert the DBG_88E macro call in core/rtw_cmd.c to use netdev_dbg
as its information may be useful to observers, and this gets the
driver closer to the point of being able to remove DBG_88E itself.

Signed-off-by: default avatarPhillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20220108005550.26264-5-phil@philpotter.co.uk


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6397fb27
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -952,7 +952,9 @@ static void rtl8188e_sreset_xmit_status_check(struct adapter *padapter)

	txdma_status = rtw_read32(padapter, REG_TXDMA_STATUS);
	if (txdma_status != 0x00) {
		DBG_88E("%s REG_TXDMA_STATUS:0x%08x\n", __func__, txdma_status);
		netdev_dbg(padapter->pnetdev,
			   "REG_TXDMA_STATUS: 0x%08x\n",
			   txdma_status);
		rtw_write32(padapter, REG_TXDMA_STATUS, txdma_status);
	}
	/* total xmit irp = 4 */