You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] trivial missing __init in drivers/net/*
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -184,7 +184,7 @@ static int m147lance_close(struct net_device *dev)
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
static struct net_device *dev_mvme147_lance;
|
||||
int init_module(void)
|
||||
int __init init_module(void)
|
||||
{
|
||||
dev_mvme147_lance = mvme147lance_probe(-1);
|
||||
if (IS_ERR(dev_mvme147_lance))
|
||||
@@ -192,7 +192,7 @@ int init_module(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cleanup_module(void)
|
||||
void __exit cleanup_module(void)
|
||||
{
|
||||
struct m147lance_private *lp = dev_mvme147_lance->priv;
|
||||
unregister_netdev(dev_mvme147_lance);
|
||||
|
||||
Reference in New Issue
Block a user