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:
Yang Yingliang
2022-10-28 15:34:57 +08:00
committed by David S. Miller
parent 738136a0e3
commit 47aeed9d2c

View File

@@ -424,8 +424,6 @@ int hnae_ae_register(struct hnae_ae_dev *hdev, struct module *owner)
return ret; return ret;
} }
__module_get(THIS_MODULE);
INIT_LIST_HEAD(&hdev->handle_list); INIT_LIST_HEAD(&hdev->handle_list);
spin_lock_init(&hdev->lock); spin_lock_init(&hdev->lock);
@@ -445,7 +443,6 @@ EXPORT_SYMBOL(hnae_ae_register);
void hnae_ae_unregister(struct hnae_ae_dev *hdev) void hnae_ae_unregister(struct hnae_ae_dev *hdev)
{ {
device_unregister(&hdev->cls_dev); device_unregister(&hdev->cls_dev);
module_put(THIS_MODULE);
} }
EXPORT_SYMBOL(hnae_ae_unregister); EXPORT_SYMBOL(hnae_ae_unregister);