Skip to content

Commit

Permalink
staging: rtl8192e: Pass priv to rtl8192_tx_resume
Browse files Browse the repository at this point in the history
Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Mar 9, 2011
1 parent 176e8dc commit 7703f04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4313,10 +4313,10 @@ static void TranslateRxSignalStuff819xpci(struct r8192_priv *priv,
}


static void rtl8192_tx_resume(struct net_device *dev)
static void rtl8192_tx_resume(struct r8192_priv *priv)
{
struct r8192_priv *priv = (struct r8192_priv *)ieee80211_priv(dev);
struct ieee80211_device *ieee = priv->ieee80211;
struct net_device *dev = priv->ieee80211->dev;
struct sk_buff *skb;
int queue_index;

Expand Down Expand Up @@ -4350,7 +4350,7 @@ static void rtl8192_irq_tx_tasklet(unsigned long arg)

spin_unlock_irqrestore(&priv->irq_th_lock, flags);

rtl8192_tx_resume(dev);
rtl8192_tx_resume(priv);
}

/* Record the received data rate */
Expand Down

0 comments on commit 7703f04

Please sign in to comment.