Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 66459
b: refs/heads/master
c: f455eb1
h: refs/heads/master
i:
  66457: 15e4a9f
  66455: 5d6ebcd
v: v3
  • Loading branch information
Holger Schurig authored and David S. Miller committed Oct 10, 2007
1 parent 3642af6 commit aa55982
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0a6d0555e90850b7ce90e8937858f11b6b98b6d4
refs/heads/master: f455eb1a4ba2bf0ff1bde7844bf3a811269d2d79
3 changes: 0 additions & 3 deletions trunk/drivers/net/wireless/libertas/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/net/wireless/libertas/dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,6 @@ struct _wlan_adapter {
u16 txrate;
u32 linkmode;
u32 radiomode;
u32 debugmode;
u8 fw_ready;

u8 last_scanned_channel;
Expand Down
4 changes: 0 additions & 4 deletions trunk/drivers/net/wireless/libertas/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
8 changes: 0 additions & 8 deletions trunk/drivers/net/wireless/libertas/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit aa55982

Please sign in to comment.