mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 06:04:23 +08:00
net: hns: hnae: remove unnecessary __module_get() and module_put()
hnae_ae_register() is called from hns_dsaf_probe(), the refcount of module hnae has already be got in resolve_symbol() while calling the function, so the __module_get()/module_put() can be removed. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
738136a0e3
commit
47aeed9d2c
@ -424,8 +424,6 @@ int hnae_ae_register(struct hnae_ae_dev *hdev, struct module *owner)
|
||||
return ret;
|
||||
}
|
||||
|
||||
__module_get(THIS_MODULE);
|
||||
|
||||
INIT_LIST_HEAD(&hdev->handle_list);
|
||||
spin_lock_init(&hdev->lock);
|
||||
|
||||
@ -445,7 +443,6 @@ EXPORT_SYMBOL(hnae_ae_register);
|
||||
void hnae_ae_unregister(struct hnae_ae_dev *hdev)
|
||||
{
|
||||
device_unregister(&hdev->cls_dev);
|
||||
module_put(THIS_MODULE);
|
||||
}
|
||||
EXPORT_SYMBOL(hnae_ae_unregister);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user