mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-15 22:31:47 -04:00
wifi: rtl8xxxu: use module_usb_driver
We can use the module_usb_driver macro instead of open-coding the driver's init and exit functions. This is simpler and saves some lines of code. Other realtek wireless drivers use module_usb_driver as well. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Reviewed-by: Ping-Ke Shih <pkshih@realtek.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20230307195718.168021-1-martin@kaiser.cx
This commit is contained in:
committed by
Kalle Valo
parent
8a66293e73
commit
0606b34402
@@ -7451,24 +7451,6 @@ static struct usb_driver rtl8xxxu_driver = {
|
||||
.disable_hub_initiated_lpm = 1,
|
||||
};
|
||||
|
||||
static int __init rtl8xxxu_module_init(void)
|
||||
{
|
||||
int res;
|
||||
|
||||
res = usb_register(&rtl8xxxu_driver);
|
||||
if (res < 0)
|
||||
pr_err(DRIVER_NAME ": usb_register() failed (%i)\n", res);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static void __exit rtl8xxxu_module_exit(void)
|
||||
{
|
||||
usb_deregister(&rtl8xxxu_driver);
|
||||
}
|
||||
|
||||
|
||||
MODULE_DEVICE_TABLE(usb, dev_table);
|
||||
|
||||
module_init(rtl8xxxu_module_init);
|
||||
module_exit(rtl8xxxu_module_exit);
|
||||
module_usb_driver(rtl8xxxu_driver);
|
||||
|
||||
Reference in New Issue
Block a user