diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-01-07 17:42:56 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-08 17:54:07 -0800 |
commit | 0c7768a0985f281e71c0229c0531ccfc0d3dd1f9 (patch) | |
tree | 0c77e2886088cca27ffbaf2dc38aa111097996e2 /drivers/net/ethernet/freescale | |
parent | fda55eca5a33f33ffcd4192c6b2d75179714a52c (diff) | |
download | blackbird-op-linux-0c7768a0985f281e71c0229c0531ccfc0d3dd1f9.tar.gz blackbird-op-linux-0c7768a0985f281e71c0229c0531ccfc0d3dd1f9.zip |
net: fec: Remove 'inline' declarations
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]
The inline declaration is pointless in this function, so just remove it.
While at it, also remove the other 'inline' declarations.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/freescale')
-rw-r--r-- | drivers/net/ethernet/freescale/fec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c index 6dc20943bd05..5f2b4acf4836 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 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; @@ -1592,12 +1592,12 @@ static void fec_reset_phy(struct platform_device *pdev) gpio_set_value(phy_reset, 1); } #else /* CONFIG_OF */ -static inline int fec_get_phy_mode_dt(struct platform_device *pdev) +static int fec_get_phy_mode_dt(struct platform_device *pdev) { return -ENODEV; } -static inline void fec_reset_phy(struct platform_device *pdev) +static void fec_reset_phy(struct platform_device *pdev) { /* * In case of platform probe, the reset has been done |