mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-17 18:14:34 +08:00
HID: roccat: Correctly mark init and exit functions
Added the __init and __exit hints for module functions. Signed-off-by: Stefan Achatz <erazor_de@users.sourceforge.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
ed28f04b27
commit
00237bc520
@ -989,12 +989,12 @@ static struct hid_driver kone_driver = {
|
|||||||
.raw_event = kone_raw_event
|
.raw_event = kone_raw_event
|
||||||
};
|
};
|
||||||
|
|
||||||
static int kone_init(void)
|
static int __init kone_init(void)
|
||||||
{
|
{
|
||||||
return hid_register_driver(&kone_driver);
|
return hid_register_driver(&kone_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void kone_exit(void)
|
static void __exit kone_exit(void)
|
||||||
{
|
{
|
||||||
hid_unregister_driver(&kone_driver);
|
hid_unregister_driver(&kone_driver);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user