Skip to content

Commit

Permalink
drivers/platform/x86/intel_ips: Convert to module_pci_driver
Browse files Browse the repository at this point in the history
use module_pci_driver instead of init/exit, make code clean.

Signed-off-by: Libo Chen <libo.chen@huawei.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
  • Loading branch information
Libo Chen authored and Matthew Garrett committed Jul 10, 2013
1 parent 3aabf44 commit b5f4f9e
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions drivers/platform/x86/intel_ips.c
Original file line number Diff line number Diff line change
Expand Up @@ -1731,18 +1731,7 @@ static struct pci_driver ips_pci_driver = {
.shutdown = ips_shutdown,
};

static int __init ips_init(void)
{
return pci_register_driver(&ips_pci_driver);
}
module_init(ips_init);

static void ips_exit(void)
{
pci_unregister_driver(&ips_pci_driver);
return;
}
module_exit(ips_exit);
module_pci_driver(ips_pci_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Jesse Barnes <jbarnes@virtuousgeek.org>");
Expand Down

0 comments on commit b5f4f9e

Please sign in to comment.