mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-13 01:28:02 +07:00
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>
This commit is contained in:
parent
3aabf444f7
commit
b5f4f9ef01
@ -1731,18 +1731,7 @@ static struct pci_driver ips_pci_driver = {
|
|||||||
.shutdown = ips_shutdown,
|
.shutdown = ips_shutdown,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init ips_init(void)
|
module_pci_driver(ips_pci_driver);
|
||||||
{
|
|
||||||
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_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR("Jesse Barnes <jbarnes@virtuousgeek.org>");
|
MODULE_AUTHOR("Jesse Barnes <jbarnes@virtuousgeek.org>");
|
||||||
|
Loading…
Reference in New Issue
Block a user