Commit 316f6211 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: rtl8723a_update_ramask(): Get rid of annoying debug message



There really is no need to print this message for anyone not trying to
debug the driver:

  rtl8723a_update_ramask => mac_id:0, networkType:0x0b, mask:0x000fffff

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c6716e1f
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1603,10 +1603,9 @@ void rtl8723a_update_ramask(struct rtw_adapter *padapter,
	rate_bitmap = 0x0fffffff;
	rate_bitmap = ODM_Get_Rate_Bitmap23a(&pHalData->odmpriv,
					  mac_id, mask, rssi_level);
	printk(KERN_DEBUG "%s => mac_id:%d, networkType:0x%02x, "
	DBG_8723A("%s => mac_id:%d, networkType:0x%02x, "
		  "mask:0x%08x\n\t ==> rssi_level:%d, rate_bitmap:0x%08x\n",
	       __func__,
	       mac_id, networkType, mask, rssi_level, rate_bitmap);
		  __func__, mac_id, networkType, mask, rssi_level, rate_bitmap);

	mask &= rate_bitmap;
	mask |= ((raid<<28)&0xf0000000);