Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfeb2852 authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman
Browse files

pch_phub: use module_pci_driver



this driver's pch_phub_pci_init, and pch_phub_pci_exit functions with
the module_init and module_exit calls can be replaced with
module_pci_driver

Signed-off-by: default avatarDevendra Naga <develkernel412222@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 73ac0e9e
Loading
Loading
Loading
Loading
+1 −12
Original line number Original line Diff line number Diff line
@@ -893,18 +893,7 @@ static struct pci_driver pch_phub_driver = {
	.resume = pch_phub_resume
	.resume = pch_phub_resume
};
};


static int __init pch_phub_pci_init(void)
module_pci_driver(pch_phub_driver);
{
	return pci_register_driver(&pch_phub_driver);
}

static void __exit pch_phub_pci_exit(void)
{
	pci_unregister_driver(&pch_phub_driver);
}

module_init(pch_phub_pci_init);
module_exit(pch_phub_pci_exit);


MODULE_DESCRIPTION("Intel EG20T PCH/LAPIS Semiconductor IOH(ML7213/ML7223) PHUB");
MODULE_DESCRIPTION("Intel EG20T PCH/LAPIS Semiconductor IOH(ML7213/ML7223) PHUB");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL");