Loading net/atm/br2684.c +1 −1 Original line number Diff line number Diff line Loading @@ -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) Loading net/atm/lec.c +1 −2 Original line number Diff line number Diff line Loading @@ -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. */ Loading Loading
net/atm/br2684.c +1 −1 Original line number Diff line number Diff line Loading @@ -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) Loading
net/atm/lec.c +1 −2 Original line number Diff line number Diff line Loading @@ -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. */ Loading