View | Details | Raw Unified | Return to bug 64231
Collapse All | Expand All

(-)a/drivers/staging/rtl8712/Kconfig (+7 lines)
Lines 16-19 config R8712_TX_AGGR Link Here
16
	---help---
16
	---help---
17
	This option provides transmit aggregation for the Realtek RTL8712 USB device.
17
	This option provides transmit aggregation for the Realtek RTL8712 USB device.
18
18
19
config R8712U_DEBUG
20
	bool "Realtek RTL8712U Wireless verbose debug"
21
	depends on R8712U
22
	help
23
	  Say Y here in order to have the rtl8712u code generate
24
	  verbose debugging messages.
25
19
26
(-)a/drivers/staging/rtl8712/rtl871x_mlme.c (-4 / +6 lines)
Lines 1043-1051 void r8712_got_addbareq_event_callback(struct _adapter *adapter, u8 *pbuf) Link Here
1043
	struct	sta_priv *pstapriv = &adapter->stapriv;
1043
	struct	sta_priv *pstapriv = &adapter->stapriv;
1044
	struct	recv_reorder_ctrl *precvreorder_ctrl = NULL;
1044
	struct	recv_reorder_ctrl *precvreorder_ctrl = NULL;
1045
1045
1046
	netdev_info(adapter->pnetdev, "%s: mac = %pM, seq = %d, tid = %d\n",
1046
#ifdef CONFIG_R8712U_DEBUG
1047
		    __func__, pAddbareq_pram->MacAddress,
1047
	printk(KERN_NOTICE "%s %s: mac = %pM, seq = %d, tid = %d\n", 
1048
	    pAddbareq_pram->StartSeqNum, pAddbareq_pram->tid);
1048
		adapter->pnetdev->name, __func__, pAddbareq_pram->MacAddress, 
1049
		pAddbareq_pram->StartSeqNum, pAddbareq_pram->tid);
1050
#endif
1051
1049
	psta = r8712_get_stainfo(pstapriv, pAddbareq_pram->MacAddress);
1052
	psta = r8712_get_stainfo(pstapriv, pAddbareq_pram->MacAddress);
1050
	if (psta) {
1053
	if (psta) {
1051
		precvreorder_ctrl =
1054
		precvreorder_ctrl =
1052
- 

Return to bug 64231