Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8901ac3 authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller
Browse files

ipx: remove __inline__ in c file on static



Let compiler decide what to do with static void __ipxitf_put()

Suggested-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e0f36310
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -306,7 +306,7 @@ void ipxitf_down(struct ipx_interface *intrfc)
	spin_unlock_bh(&ipx_interfaces_lock);
}

static __inline__ void __ipxitf_put(struct ipx_interface *intrfc)
static void __ipxitf_put(struct ipx_interface *intrfc)
{
	if (atomic_dec_and_test(&intrfc->refcnt))
		__ipxitf_down(intrfc);