mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
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: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
24e4688632
commit
73d3f6652a
1 changed files with 2 additions and 2 deletions
|
@ -87,12 +87,12 @@ static struct pci_driver phison_pci_driver = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int phison_ide_init(void)
|
static int __init phison_ide_init(void)
|
||||||
{
|
{
|
||||||
return pci_register_driver(&phison_pci_driver);
|
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);
|
pci_unregister_driver(&phison_pci_driver);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue