diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-10-27 16:12:08 -0400 |
---|---|---|
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) | |||
306 | spin_unlock_bh(&ipx_interfaces_lock); | 306 | spin_unlock_bh(&ipx_interfaces_lock); |
307 | } | 307 | } |
308 | 308 | ||
309 | static __inline__ void __ipxitf_put(struct ipx_interface *intrfc) | 309 | static void __ipxitf_put(struct ipx_interface *intrfc) |
310 | { | 310 | { |
311 | if (atomic_dec_and_test(&intrfc->refcnt)) | 311 | if (atomic_dec_and_test(&intrfc->refcnt)) |
312 | __ipxitf_down(intrfc); | 312 | __ipxitf_down(intrfc); |