mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
DWC3: use module_pci_driver
This cuts down on the boilerplate code. Cc: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aad4f4000c
commit
956563362b
1 changed files with 1 additions and 11 deletions
|
@ -171,14 +171,4 @@ MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
|
||||||
MODULE_LICENSE("Dual BSD/GPL");
|
MODULE_LICENSE("Dual BSD/GPL");
|
||||||
MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
|
MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
|
||||||
|
|
||||||
static int __devinit dwc3_pci_init(void)
|
module_pci_driver(dwc3_pci_driver);
|
||||||
{
|
|
||||||
return pci_register_driver(&dwc3_pci_driver);
|
|
||||||
}
|
|
||||||
module_init(dwc3_pci_init);
|
|
||||||
|
|
||||||
static void __exit dwc3_pci_exit(void)
|
|
||||||
{
|
|
||||||
pci_unregister_driver(&dwc3_pci_driver);
|
|
||||||
}
|
|
||||||
module_exit(dwc3_pci_exit);
|
|
||||||
|
|
Loading…
Reference in a new issue