From: John Linville Date: Mon, 19 Oct 2015 15:15:00 +0000 (-0400) Subject: orinoco_usb: return error in ezusb_probe when alloc_orinocodev fails X-Git-Tag: v4.14-rc1~4436^2~39^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=989b8376f33721f7206dd058330da05972a71384;p=platform%2Fkernel%2Flinux-rpi.git orinoco_usb: return error in ezusb_probe when alloc_orinocodev fails The current code exits after alloc_orinocodev, but fails to change the return value to something that indicates the failure. This patch changes the return value to -ENOMEM. https://bugzilla.kernel.org/show_bug.cgi?id=106181 Signed-off-by: John W. Linville Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/orinoco/orinoco_usb.c b/drivers/net/wireless/orinoco/orinoco_usb.c index 26a57d7..f2cd513 100644 --- a/drivers/net/wireless/orinoco/orinoco_usb.c +++ b/drivers/net/wireless/orinoco/orinoco_usb.c @@ -1576,6 +1576,7 @@ static int ezusb_probe(struct usb_interface *interface, ezusb_hard_reset, NULL); if (!priv) { err("Couldn't allocate orinocodev"); + retval = -ENOMEM; goto exit; }