From patchwork Mon Oct 27 18:09:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabian Frederick X-Patchwork-Id: 403720 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id CAA2414007F for ; Tue, 28 Oct 2014 05:13:59 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752598AbaJ0SNo (ORCPT ); Mon, 27 Oct 2014 14:13:44 -0400 Received: from mailrelay006.isp.belgacom.be ([195.238.6.172]:59449 "EHLO mailrelay006.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751812AbaJ0SJf (ORCPT ); Mon, 27 Oct 2014 14:09:35 -0400 X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArcUAAiKTlRXQ3zJ/2dsb2JhbABcgw6BLLlDCwUBdJo9BAKBHhcBfYQwLyOBGjeIRQG8a48IhjSJcGQdhDUFnWGMaolEgUcBgjE8L4EGgUUBAQE Received: from 201.124-67-87.adsl-dyn.isp.belgacom.be (HELO localhost.localdomain) ([87.67.124.201]) by relay.skynet.be with ESMTP; 27 Oct 2014 19:09:15 +0100 From: Fabian Frederick To: linux-kernel@vger.kernel.org Cc: Fabian Frederick , Arnaldo Carvalho de Melo , "David S. Miller" , netdev@vger.kernel.org Subject: [PATCH 1/1 net-next] ipx: replace __inline__ by inline Date: Mon, 27 Oct 2014 19:09:12 +0100 Message-Id: <1414433352-29210-1-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 1.9.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Fabian Frederick --- net/ipx/af_ipx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index 91729b8..61ffe3c 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 inline void __ipxitf_put(struct ipx_interface *intrfc) { if (atomic_dec_and_test(&intrfc->refcnt)) __ipxitf_down(intrfc);