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

Commit 6303e6e8 authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by David S. Miller
Browse files

tg3: Fix inline keyword usage



The correct usage is "static inline void" not "static void inline".

Signed-off-by: default avatarJavier Martinez Canillas <martinez.javier@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 27fd9de8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13118,7 +13118,7 @@ done:

static struct pci_dev * __devinit tg3_find_peer(struct tg3 *);

static void inline vlan_features_add(struct net_device *dev, unsigned long flags)
static inline void vlan_features_add(struct net_device *dev, unsigned long flags)
{
	dev->vlan_features |= flags;
}