replace __inline__ by inline in net/lapb Signed-off-by: Daniel Lezcano --- net/lapb/lapb_iface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: net-2.6/net/lapb/lapb_iface.c =================================================================== --- net-2.6.orig/net/lapb/lapb_iface.c +++ net-2.6/net/lapb/lapb_iface.c @@ -50,12 +50,12 @@ static void lapb_free_cb(struct lapb_cb kfree(lapb); } -static __inline__ void lapb_hold(struct lapb_cb *lapb) +static inline void lapb_hold(struct lapb_cb *lapb) { atomic_inc(&lapb->refcnt); } -static __inline__ void lapb_put(struct lapb_cb *lapb) +static inline void lapb_put(struct lapb_cb *lapb) { if (atomic_dec_and_test(&lapb->refcnt)) lapb_free_cb(lapb); -- -- 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