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

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
...@@ -664,12 +664,12 @@ static struct rtnl_link_stats64 *vlan_dev_get_stats64(struct net_device *dev, st ...@@ -664,12 +664,12 @@ static struct rtnl_link_stats64 *vlan_dev_get_stats64(struct net_device *dev, st
} }
#ifdef CONFIG_NET_POLL_CONTROLLER #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; 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 vlan_dev_priv *info = vlan_dev_priv(dev);
struct net_device *real_dev = info->real_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) ...@@ -696,7 +696,7 @@ int vlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo)
return err; 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 vlan_dev_priv *info = vlan_dev_priv(dev);
struct netpoll *netpoll = info->netpoll; struct netpoll *netpoll = info->netpoll;
......
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