Commit 4edf0690 authored by Daniele Bellucci's avatar Daniele Bellucci Committed by Greg Kroah-Hartman

[PATCH] USB: Audit usb_register() in drivers/usb/input/wacom.c

parent 28596453
......@@ -629,9 +629,10 @@ static struct usb_driver wacom_driver = {
static int __init wacom_init(void)
{
usb_register(&wacom_driver);
info(DRIVER_VERSION ":" DRIVER_DESC);
return 0;
int result = usb_register(&wacom_driver);
if (result == 0)
info(DRIVER_VERSION ":" DRIVER_DESC);
return result;
}
static void __exit wacom_exit(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment