replace __inline__ by inline in net/atm Signed-off-by: Daniel Lezcano --- net/atm/lec.c | 4 ++-- net/atm/resources.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) Index: net-2.6/net/atm/lec.c =================================================================== --- net-2.6.orig/net/atm/lec.c +++ net-2.6/net/atm/lec.c @@ -226,8 +226,8 @@ static int lec_open(struct net_device *d return 0; } -static __inline__ void -lec_send(struct atm_vcc *vcc, struct sk_buff *skb, struct lec_priv *priv) +static inline void lec_send(struct atm_vcc *vcc, struct sk_buff *skb, + struct lec_priv *priv) { ATM_SKB(skb)->vcc = vcc; ATM_SKB(skb)->atm_options = vcc->atm_options; Index: net-2.6/net/atm/resources.c =================================================================== --- net-2.6.orig/net/atm/resources.c +++ net-2.6/net/atm/resources.c @@ -401,7 +401,7 @@ done: return error; } -static __inline__ void *dev_get_idx(loff_t left) +static inline void *dev_get_idx(loff_t left) { struct list_head *p; -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html