dect
/
linux-2.6
Archived
13
0
Fork 0

Cleanup usbnet_probe() return value handling

usbnet_probe() handles a positive return value from the driver bind()
function as success, but will later only setup the status handler if the
return value was zero, leading to confusion. Patch adjusts this to accept
positive values as success in both checks.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Peter Korsgaard 2007-07-03 00:46:42 +02:00 committed by Jeff Garzik
parent 4638aef1e2
commit 9514bfe5d9
1 changed files with 1 additions and 1 deletions

View File

@ -1213,7 +1213,7 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
status = 0;
}
if (status == 0 && dev->status)
if (status >= 0 && dev->status)
status = init_status (dev, udev);
if (status < 0)
goto out3;