diff mbox series

[-next] HID: cmedia: Add __init/__exit annotations to module init/exit funcs

Message ID 20220926110453.1316273-1-ruanjinjie@huawei.com
State New
Headers show
Series [-next] HID: cmedia: Add __init/__exit annotations to module init/exit funcs | expand

Commit Message

Jinjie Ruan Sept. 26, 2022, 11:04 a.m. UTC
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 mbox series

Patch

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);