Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 159150
b: refs/heads/master
c: 12f49a7
h: refs/heads/master
v: v3
  • Loading branch information
Christian Lamparter authored and John W. Linville committed Jul 24, 2009
1 parent 13a0549 commit 564809a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 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: 25e83c490be421019997146bdec8645f5bcabcd1
refs/heads/master: 12f49a79cd32d97a11f864a7b67660438ee3e6c8
16 changes: 1 addition & 15 deletions trunk/drivers/net/wireless/p54/txrx.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,6 @@ static int p54_assign_address(struct p54_common *priv, struct sk_buff *skb)
u32 target_addr = priv->rx_start;
u16 len = priv->headroom + skb->len + priv->tailroom + 3;

if (unlikely(WARN_ON(!skb || !priv)))
return -EINVAL;

info = IEEE80211_SKB_CB(skb);
range = (void *) info->rate_driver_data;
len = (range->extra_len + len) & ~0x3;
Expand All @@ -111,11 +108,6 @@ static int p54_assign_address(struct p54_common *priv, struct sk_buff *skb)
range = (void *) info->rate_driver_data;
hole_size = range->start_addr - last_addr;

if (!entry->next) {
spin_unlock_irqrestore(&priv->tx_queue.lock, flags);
return -ENOSPC;
}

if (!target_skb && hole_size >= len) {
target_skb = entry->prev;
hole_size -= len;
Expand Down Expand Up @@ -153,9 +145,6 @@ static void p54_tx_pending(struct p54_common *priv)
struct sk_buff *skb;
int ret;

if (unlikely(WARN_ON(!priv)))
return ;

skb = skb_dequeue(&priv->tx_pending);
if (unlikely(!skb))
return ;
Expand Down Expand Up @@ -219,7 +208,7 @@ static int p54_tx_qos_accounting_alloc(struct p54_common *priv,
static void p54_tx_qos_accounting_free(struct p54_common *priv,
struct sk_buff *skb)
{
if (skb && IS_DATA_FRAME(skb)) {
if (IS_DATA_FRAME(skb)) {
struct p54_hdr *hdr = (void *) skb->data;
struct p54_tx_data *data = (void *) hdr->data;
unsigned long flags;
Expand Down Expand Up @@ -266,9 +255,6 @@ static struct sk_buff *p54_find_and_unlink_skb(struct p54_common *priv,

void p54_tx(struct p54_common *priv, struct sk_buff *skb)
{
if (unlikely(WARN_ON(!priv)))
return ;

skb_queue_tail(&priv->tx_pending, skb);
p54_tx_pending(priv);
}
Expand Down

0 comments on commit 564809a

Please sign in to comment.