diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-27 21:12:08 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-10-27 16:25:31 -0400 |
commit | b8901ac319768cdd3afa060787503e0c405f9607 (patch) | |
tree | b6a1ef8023b51dd4d5f5dfa558c6ed06e5539873 /net/ipx | |
parent | e0f36310f793333d667334bb580c0de8c943bae2 (diff) |
ipx: remove __inline__ in c file on static
Let compiler decide what to do with static void __ipxitf_put()
Suggested-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipx')
-rw-r--r-- | net/ipx/af_ipx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index 91729b807c7d..313ef4644069 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c @@ -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); |