Commit bc8d7da3f19191f86dcc8274cf1a3f2d6aeb0aaa

Authored by Balaji G
Committed by David S. Miller
1 parent c211c96989

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -8317,7 +8317,7 @@
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 }