提交 f455eb1a 编写于 作者: H Holger Schurig 提交者: David S. Miller

[PATCH] libertas: remove debugmode

There is nowhere any place that set's this variable.
Signed-off-by: NHolger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 0a6d0555
......@@ -149,9 +149,6 @@ static inline void lbs_dbg_hex(char *prompt, u8 * buf, int len)
#define MRVDRV_CHANNELS_PER_SCAN 4
#define MRVDRV_MAX_CHANNELS_PER_SCAN 14
#define MRVDRV_DEBUG_RX_PATH 0x00000001
#define MRVDRV_DEBUG_TX_PATH 0x00000002
#define MRVDRV_MIN_BEACON_INTERVAL 20
#define MRVDRV_MAX_BEACON_INTERVAL 1000
#define MRVDRV_BEACON_INTERVAL 100
......
......@@ -393,7 +393,6 @@ struct _wlan_adapter {
u16 txrate;
u32 linkmode;
u32 radiomode;
u32 debugmode;
u8 fw_ready;
u8 last_scanned_channel;
......
......@@ -172,10 +172,6 @@ int libertas_process_rxed_packet(wlan_private * priv, struct sk_buff *skb)
lbs_deb_enter(LBS_DEB_RX);
if (priv->adapter->debugmode & MRVDRV_DEBUG_RX_PATH)
lbs_dbg_hex("RX packet: ", skb->data,
min_t(unsigned int, skb->len, 100));
if (priv->adapter->linkmode == WLAN_LINKMODE_802_11)
return process_rxed_802_11_packet(priv, skb);
......
......@@ -72,10 +72,6 @@ static int SendSinglePacket(wlan_private * priv, struct sk_buff *skb)
if (priv->adapter->surpriseremoved)
return -1;
if ((priv->adapter->debugmode & MRVDRV_DEBUG_TX_PATH) != 0)
lbs_dbg_hex("TX packet: ", skb->data,
min_t(unsigned int, skb->len, 100));
if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
......@@ -267,10 +263,6 @@ void libertas_send_tx_feedback(wlan_private * priv)
radiotap_hdr = (struct tx_radiotap_hdr *)adapter->currenttxskb->data;
if ((adapter->debugmode & MRVDRV_DEBUG_TX_PATH) != 0)
lbs_dbg_hex("TX feedback: ", (u8 *) radiotap_hdr,
min_t(unsigned int, adapter->currenttxskb->len, 100));
txfail = (status >> 24);
#if 0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册