ch9200: Convert to use module_usb_driver
Converts the ch9200 driver to use the module_usb_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Acked-by: Matthew Garrett <mjg59@srcf.ucam.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ae5f2fb1d5
commit
23eedbc243
1 changed files with 1 additions and 12 deletions
|
@ -426,18 +426,7 @@ static struct usb_driver ch9200_driver = {
|
||||||
.resume = usbnet_resume,
|
.resume = usbnet_resume,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init ch9200_init(void)
|
module_usb_driver(ch9200_driver);
|
||||||
{
|
|
||||||
return usb_register(&ch9200_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit ch9200_exit(void)
|
|
||||||
{
|
|
||||||
usb_deregister(&ch9200_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(ch9200_init);
|
|
||||||
module_exit(ch9200_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("QinHeng CH9200 USB Network device");
|
MODULE_DESCRIPTION("QinHeng CH9200 USB Network device");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
Loading…
Add table
Reference in a new issue