HID: adding __init/__exit macros to module init/exit functions

Trivial patch which adds the __init and __exit macros to the module_init /
module_exit functions of several HID drivers from drivers/hid/

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Peter Huewe 2009-07-02 19:08:38 +02:00 committed by Jiri Kosina
parent 7a84b1336a
commit a24f423bdf
24 changed files with 48 additions and 48 deletions

View file

@ -145,12 +145,12 @@ static struct hid_driver a4_driver = {
.remove = a4_remove,
};
static int a4_init(void)
static int __init a4_init(void)
{
return hid_register_driver(&a4_driver);
}
static void a4_exit(void)
static void __exit a4_exit(void)
{
hid_unregister_driver(&a4_driver);
}