Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}