diff options
author | Li Zetao <lizetao1@huawei.com> | 2023-08-15 15:49:27 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-16 09:54:16 +0100 |
commit | 61a9b174f461de4d0668a98ca2f668b65ebdf131 (patch) | |
tree | 278d1761775da359f602323261789dd34fc8bff2 /drivers/nfc | |
parent | bc02fc7990239a73f199105bb57b34963b6a12c7 (diff) |
nfc: virtual_ncidev: Use module_misc_device macro to simplify the code
Use the module_misc_device macro to simplify the code, which is the
same as declaring with module_init() and module_exit().
Signed-off-by: Li Zetao <lizetao1@huawei.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/virtual_ncidev.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/nfc/virtual_ncidev.c b/drivers/nfc/virtual_ncidev.c index bb76c7c7cc82..b027be0b0b6f 100644 --- a/drivers/nfc/virtual_ncidev.c +++ b/drivers/nfc/virtual_ncidev.c @@ -200,18 +200,7 @@ static struct miscdevice miscdev = { .mode = 0600, }; -static int __init virtual_ncidev_init(void) -{ - return misc_register(&miscdev); -} - -static void __exit virtual_ncidev_exit(void) -{ - misc_deregister(&miscdev); -} - -module_init(virtual_ncidev_init); -module_exit(virtual_ncidev_exit); +module_misc_device(miscdev); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Virtual NCI device simulation driver"); |