aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipx
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-10-27 21:12:08 +0100
committerDavid S. Miller <davem@davemloft.net>2014-10-27 16:25:31 -0400
commitb8901ac319768cdd3afa060787503e0c405f9607 (patch)
treeb6a1ef8023b51dd4d5f5dfa558c6ed06e5539873 /net/ipx
parentipx: remove unnecessary casting on ntohl (diff)
downloadlinux-dev-b8901ac319768cdd3afa060787503e0c405f9607.tar.xz
linux-dev-b8901ac319768cdd3afa060787503e0c405f9607.zip
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.c2
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);