diff options
author | Libo Chen <libo.chen@huawei.com> | 2013-05-26 22:31:33 -0400 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2013-07-10 15:42:47 -0400 |
commit | b5f4f9ef0125845cd03dc9de5dbe1344e60474d0 (patch) | |
tree | cb0c8cdf68039bc4389bd426c183a4dc06ce8dcd | |
parent | 3aabf444f70f5855d8a0a06285fdd55e76a740d5 (diff) |
drivers/platform/x86/intel_ips: Convert to module_pci_driver
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>
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 5051aa970e0a..18dcb58ba965 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c | |||
@@ -1731,18 +1731,7 @@ static struct pci_driver ips_pci_driver = { | |||
1731 | .shutdown = ips_shutdown, | 1731 | .shutdown = ips_shutdown, |
1732 | }; | 1732 | }; |
1733 | 1733 | ||
1734 | static int __init ips_init(void) | 1734 | module_pci_driver(ips_pci_driver); |
1735 | { | ||
1736 | return pci_register_driver(&ips_pci_driver); | ||
1737 | } | ||
1738 | module_init(ips_init); | ||
1739 | |||
1740 | static void ips_exit(void) | ||
1741 | { | ||
1742 | pci_unregister_driver(&ips_pci_driver); | ||
1743 | return; | ||
1744 | } | ||
1745 | module_exit(ips_exit); | ||
1746 | 1735 | ||
1747 | MODULE_LICENSE("GPL"); | 1736 | MODULE_LICENSE("GPL"); |
1748 | MODULE_AUTHOR("Jesse Barnes <jbarnes@virtuousgeek.org>"); | 1737 | MODULE_AUTHOR("Jesse Barnes <jbarnes@virtuousgeek.org>"); |