drivers net: Fix declaration ordering in inline functions.

The correct usage should be "static inline void" instead of "static void inline"

Signed-off-by: G.Balaji <balajig81@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Balaji G and committed by David S. Miller bc8d7da3 c211c969

+1 -1
+1 -1
drivers/net/bnx2.c
··· 8317 8317 #endif 8318 8318 }; 8319 8319 8320 - static void inline vlan_features_add(struct net_device *dev, u32 flags) 8320 + static inline void vlan_features_add(struct net_device *dev, u32 flags) 8321 8321 { 8322 8322 dev->vlan_features |= flags; 8323 8323 }