Skip to content

Commit

Permalink
Staging: phison: adding __init/__exit macros
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peter Huewe authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 24e4688 commit 73d3f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/phison/phison.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 73d3f66

Please sign in to comment.