mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 21:52:04 +00:00
usb: dwc3: core: Convert to module_platform_driver
Use the module_platform_driver macro. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a5360a53a7
commit
b1116dcc63
@ -597,19 +597,9 @@ static struct platform_driver dwc3_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
module_platform_driver(dwc3_driver);
|
||||
|
||||
MODULE_ALIAS("platform:dwc3");
|
||||
MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver");
|
||||
|
||||
static int __devinit dwc3_init(void)
|
||||
{
|
||||
return platform_driver_register(&dwc3_driver);
|
||||
}
|
||||
module_init(dwc3_init);
|
||||
|
||||
static void __exit dwc3_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&dwc3_driver);
|
||||
}
|
||||
module_exit(dwc3_exit);
|
||||
|
Loading…
Reference in New Issue
Block a user