Commit bc8d7da3 authored by Balaji G's avatar Balaji G Committed by David S. Miller

drivers net: Fix declaration ordering in inline functions.

The correct usage should be "static inline void" instead of "static void inline"
Signed-off-by: default avatarG.Balaji <balajig81@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c211c969
......@@ -8317,7 +8317,7 @@ static const struct net_device_ops bnx2_netdev_ops = {
#endif
};
static void inline vlan_features_add(struct net_device *dev, u32 flags)
static inline void vlan_features_add(struct net_device *dev, u32 flags)
{
dev->vlan_features |= flags;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment