vlan: static functions
commit 6d4cdf47d2
(vlan: add 802.1q netpoll support) forgot to declare
as static some private functions.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
CC: Benjamin LaHaise <bcrl@kvack.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
f9586f79bf
Коммит
de93cb2eaf
|
@ -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 @@ out:
|
|||
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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче