mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
net: unexport dev_addr_init() & dev_addr_flush()
There are no module callers in-tree and it's hard to justify why anyone would init or flush addresses of a netdev (note the flush is more of a destructor, it frees netdev->dev_addr). Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
adeef3e321
commit
5f0b692384
@ -513,7 +513,6 @@ void dev_addr_flush(struct net_device *dev)
|
||||
__hw_addr_flush(&dev->dev_addrs);
|
||||
dev->dev_addr = NULL;
|
||||
}
|
||||
EXPORT_SYMBOL(dev_addr_flush);
|
||||
|
||||
/**
|
||||
* dev_addr_init - Init device address list
|
||||
@ -547,7 +546,6 @@ int dev_addr_init(struct net_device *dev)
|
||||
}
|
||||
return err;
|
||||
}
|
||||
EXPORT_SYMBOL(dev_addr_init);
|
||||
|
||||
void dev_addr_mod(struct net_device *dev, unsigned int offset,
|
||||
const void *addr, size_t len)
|
||||
|
Loading…
Reference in New Issue
Block a user