lkml.org 
[lkml]   [2022]   [Sep]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH -next] HID: cmedia: Add __init/__exit annotations to module init/exit funcs
Date
Add missing __init/__exit annotations to module init/exit funcs

Signed-off-by: ruanjinjie <ruanjinjie@huawei.com>
---
drivers/hid/hid-cmedia.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/hid/hid-cmedia.c b/drivers/hid/hid-cmedia.c
index cab42047bc99..c5bd14544cdc 100644
--- a/drivers/hid/hid-cmedia.c
+++ b/drivers/hid/hid-cmedia.c
@@ -222,7 +222,7 @@ static struct hid_driver cmhid_hs100b_driver = {
.report_fixup = cmhid_hs100b_report_fixup,
};

-static int cmedia_init(void)
+static int __init cmedia_init(void)
{
int ret;

@@ -238,7 +238,7 @@ static int cmedia_init(void)
}
module_init(cmedia_init);

-static void cmedia_exit(void)
+static void __exit cmedia_exit(void)
{
hid_unregister_driver(&cmhid_driver);
hid_unregister_driver(&cmhid_hs100b_driver);
--
2.25.1
\
 
 \ /
  Last update: 2022-09-26 16:43    [W:0.036 / U:0.948 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site