From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio Estevam Subject: [PATCH] net: fec: Place 'inline' in the beginning of declaration Date: Tue, 8 Jan 2013 01:20:33 -0200 Message-ID: <1357615233-30241-1-git-send-email-festevam@gmail.com> Cc: shawn.guo@linaro.org, netdev@vger.kernel.org, Fabio Estevam To: davem@davemloft.net Return-path: Received: from mail-yh0-f54.google.com ([209.85.213.54]:35823 "EHLO mail-yh0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751568Ab3AHD0Y (ORCPT ); Mon, 7 Jan 2013 22:26:24 -0500 Received: by mail-yh0-f54.google.com with SMTP id i57so1547632yha.13 for ; Mon, 07 Jan 2013 19:26:23 -0800 (PST) Sender: netdev-owner@vger.kernel.org List-ID: From: Fabio Estevam Fix the following warning when building with W=1 option: drivers/net/ethernet/freescale/fec.c:810:1: warning: '__inline__' is not at beginning of declaration [-Wold-style-declaration] Putting __inline__ in the beggining then checkpath complains: WARNING: plain inline is preferred over __inline__ #24: FILE: drivers/net/ethernet/freescale/fec.c:810: +static __inline__ void fec_get_mac(struct net_device *ndev) ,so use 'inline' in the beginning and make gcc and checkpath happy. Signed-off-by: Fabio Estevam --- drivers/net/ethernet/freescale/fec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c index a379319..4624f6b 100644 --- a/drivers/net/ethernet/freescale/fec.c +++ b/drivers/net/ethernet/freescale/fec.c @@ -807,7 +807,7 @@ fec_enet_interrupt(int irq, void *dev_id) /* ------------------------------------------------------------------------- */ -static void __inline__ fec_get_mac(struct net_device *ndev) +static inline void fec_get_mac(struct net_device *ndev) { struct fec_enet_private *fep = netdev_priv(ndev); struct fec_platform_data *pdata = fep->pdev->dev.platform_data; -- 1.7.9.5