Commit 73d3f665 authored by Peter Huewe's avatar Peter Huewe Committed by Greg Kroah-Hartman

Staging: phison: adding __init/__exit macros

Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of drivers/staging/phison/phison.c
Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 24e46886
......@@ -87,12 +87,12 @@ static struct pci_driver phison_pci_driver = {
#endif
};
static int phison_ide_init(void)
static int __init phison_ide_init(void)
{
return pci_register_driver(&phison_pci_driver);
}
static void phison_ide_exit(void)
static void __exit phison_ide_exit(void)
{
pci_unregister_driver(&phison_pci_driver);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment