Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122432
b: refs/heads/master
c: 25dd7e6
h: refs/heads/master
v: v3
  • Loading branch information
Wang Chen authored and David S. Miller committed Dec 3, 2008
1 parent 71329ab commit e0b627b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 52404881984e2d447f920a23e3bb63262dfc77f3
refs/heads/master: 25dd7e6aedff054736f9edfd05bb585d810d8543
6 changes: 3 additions & 3 deletions trunk/drivers/isdn/hysdn/hysdn_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int
net_open(struct net_device *dev)
{
struct in_device *in_dev;
hysdn_card *card = dev->priv;
hysdn_card *card = dev->ml_priv;
int i;

netif_start_queue(dev); /* start tx-queueing */
Expand Down Expand Up @@ -159,7 +159,7 @@ net_send_packet(struct sk_buff *skb, struct net_device *dev)
spin_unlock_irq(&lp->lock);

if (lp->sk_count <= 3) {
schedule_work(&((hysdn_card *) dev->priv)->irq_queue);
schedule_work(&((hysdn_card *) dev->ml_priv)->irq_queue);
}
return (0); /* success */
} /* net_send_packet */
Expand Down Expand Up @@ -295,7 +295,7 @@ hysdn_net_create(hysdn_card * card)
kfree(dev);
return (i);
}
dev->priv = card; /* remember pointer to own data structure */
dev->ml_priv = card; /* remember pointer to own data structure */
card->netif = dev; /* setup the local pointer */

if (card->debug_flags & LOG_NET_INIT)
Expand Down

0 comments on commit e0b627b

Please sign in to comment.