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

Commit de93cb2e authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

vlan: static functions



commit 6d4cdf47 (vlan: add 802.1q netpoll support) forgot to declare
as static some private functions.

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
CC: Benjamin LaHaise <bcrl@kvack.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f9586f79
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -664,12 +664,12 @@ static struct rtnl_link_stats64 *vlan_dev_get_stats64(struct net_device *dev, st
}

#ifdef CONFIG_NET_POLL_CONTROLLER
void vlan_dev_poll_controller(struct net_device *dev)
static void vlan_dev_poll_controller(struct net_device *dev)
{
	return;
}

int vlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo)
static int vlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo)
{
	struct vlan_dev_priv *info = vlan_dev_priv(dev);
	struct net_device *real_dev = info->real_dev;
@@ -696,7 +696,7 @@ int vlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo)
	return err;
}

void vlan_dev_netpoll_cleanup(struct net_device *dev)
static void vlan_dev_netpoll_cleanup(struct net_device *dev)
{
	struct vlan_dev_priv *info = vlan_dev_priv(dev);
	struct netpoll *netpoll = info->netpoll;