Commit 1583aeb5 authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman

staging: usbip: stub_main: correctly handle return value

ret == 0 means success, anything else is failure.
Signed-off-by: default avatarnavin patidar <navinp@cdac.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 14ab3daa
......@@ -255,14 +255,14 @@ static int __init usbip_host_init(void)
}
ret = usb_register(&stub_driver);
if (ret < 0) {
if (ret) {
pr_err("usb_register failed %d\n", ret);
goto err_usb_register;
}
ret = driver_create_file(&stub_driver.drvwrap.driver,
&driver_attr_match_busid);
if (ret < 0) {
if (ret) {
pr_err("driver_create_file failed\n");
goto err_create_file;
}
......
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