aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPeter Huewe <peterhuewe@gmx.de>2009-09-28 19:53:16 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-12-11 15:23:05 -0500
commit73d3f6652a153a33648a2213c03e292809cc9ddb (patch)
tree642c02e84a7f8e5a758d415e9fb26f8fc9a469c9 /drivers
parent24e4688632c8ae95760cb917ee5f42348fa22cbf (diff)
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/phison/phison.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/phison/phison.c b/drivers/staging/phison/phison.c
index 270ebcb681a..3817d749704 100644
--- a/drivers/staging/phison/phison.c
+++ b/drivers/staging/phison/phison.c
@@ -87,12 +87,12 @@ static struct pci_driver phison_pci_driver = {
87#endif 87#endif
88}; 88};
89 89
90static int phison_ide_init(void) 90static int __init phison_ide_init(void)
91{ 91{
92 return pci_register_driver(&phison_pci_driver); 92 return pci_register_driver(&phison_pci_driver);
93} 93}
94 94
95static void phison_ide_exit(void) 95static void __exit phison_ide_exit(void)
96{ 96{
97 pci_unregister_driver(&phison_pci_driver); 97 pci_unregister_driver(&phison_pci_driver);
98} 98}