Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224412
b: refs/heads/master
c: 37d6680
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and David S. Miller committed Nov 17, 2010
1 parent 4f8f0b2 commit 1023ce7
Show file tree
Hide file tree
Showing 3 changed files with 3 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: ece49153b601d95bcebd45a6394e370972f0b0a0
refs/heads/master: 37d668004289d202f71dc5bfdadf6c18b34577a2
2 changes: 1 addition & 1 deletion trunk/net/atm/br2684.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static LIST_HEAD(br2684_devs);

static inline struct br2684_dev *BRPRIV(const struct net_device *net_dev)
{
return (struct br2684_dev *)netdev_priv(net_dev);
return netdev_priv(net_dev);
}

static inline struct net_device *list_entry_brdev(const struct list_head *le)
Expand Down
3 changes: 1 addition & 2 deletions trunk/net/atm/lec.c
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,7 @@ static int lec_mcast_attach(struct atm_vcc *vcc, int arg)
if (arg < 0 || arg >= MAX_LEC_ITF || !dev_lec[arg])
return -EINVAL;
vcc->proto_data = dev_lec[arg];
return lec_mcast_make((struct lec_priv *)netdev_priv(dev_lec[arg]),
vcc);
return lec_mcast_make(netdev_priv(dev_lec[arg]), vcc);
}

/* Initialize device. */
Expand Down

0 comments on commit 1023ce7

Please sign in to comment.