staging: usbip: vhci_hcd: correctly handle return value
ret == 0 means success, anything else is failure. Signed-off-by: navin patidar <navinp@cdac.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1583aeb53c
commit
4d42195021
1 changed files with 2 additions and 2 deletions
|
@ -1146,11 +1146,11 @@ static int __init vhci_hcd_init(void)
|
|||
return -ENODEV;
|
||||
|
||||
ret = platform_driver_register(&vhci_driver);
|
||||
if (ret < 0)
|
||||
if (ret)
|
||||
goto err_driver_register;
|
||||
|
||||
ret = platform_device_register(&the_pdev);
|
||||
if (ret < 0)
|
||||
if (ret)
|
||||
goto err_platform_device_register;
|
||||
|
||||
pr_info(DRIVER_DESC " v" USBIP_VERSION "\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue