Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236328
b: refs/heads/master
c: 762bf6d
h: refs/heads/master
v: v3
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Mar 9, 2011
1 parent e607e8e commit 7632890
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: 6bad88dac0e648c6978a02c6afb0dc2f4fa484bb
refs/heads/master: 762bf6dedd7159ea0b6c8150e342b6299e6dd39b
7 changes: 3 additions & 4 deletions trunk/drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static void rtl8192_irq_rx_tasklet(unsigned long arg);
static void rtl8192_irq_tx_tasklet(unsigned long arg);
static void rtl8192_prepare_beacon(unsigned long arg);
static irqreturn_t rtl8192_interrupt(int irq, void *netdev);
static void rtl819xE_tx_cmd(struct net_device *dev, struct sk_buff *skb);
static void rtl819xE_tx_cmd(struct r8192_priv *priv, struct sk_buff *skb);
static void rtl8192_update_ratr_table(struct r8192_priv *priv);
static void rtl8192_restart(struct work_struct *work);
static void watch_dog_timer_callback(unsigned long data);
Expand Down Expand Up @@ -879,7 +879,7 @@ static int rtl8192_hard_start_xmit(struct sk_buff *skb,struct net_device *dev)

memcpy(skb->cb, &dev, sizeof(dev));
if (queue_index == TXCMD_QUEUE) {
rtl819xE_tx_cmd(dev, skb);
rtl819xE_tx_cmd(priv, skb);
ret = 0;
return ret;
} else {
Expand Down Expand Up @@ -1050,9 +1050,8 @@ static void rtl8192_net_update(struct r8192_priv *priv)
}
}

static void rtl819xE_tx_cmd(struct net_device *dev, struct sk_buff *skb)
static void rtl819xE_tx_cmd(struct r8192_priv *priv, struct sk_buff *skb)
{
struct r8192_priv *priv = ieee80211_priv(dev);
struct rtl8192_tx_ring *ring;
tx_desc_819x_pci *entry;
unsigned int idx;
Expand Down

0 comments on commit 7632890

Please sign in to comment.