Add missing __init/__exit annotations to module init/exit funcs Signed-off-by: ruanjinjie <ruanjinjie@xxxxxxxxxx> --- 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