From: Syam Sidhardhan Date: Tue, 22 Dec 2015 14:00:20 +0000 (+0530) Subject: Bluetooth: bfusb: Fix the return error code X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7ddb69222d0fdc0bc83b60dbb21d9864ebf2907e;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git Bluetooth: bfusb: Fix the return error code -ENOMEM is the appropriate error code instead of -EIO. Signed-off-by: Syam Sidhardhan Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index c304102fa673..3bf4ec60e073 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c @@ -637,7 +637,7 @@ static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *i /* Initialize control structure and load firmware */ data = devm_kzalloc(&intf->dev, sizeof(struct bfusb_data), GFP_KERNEL); if (!data) - goto done; + return -ENOMEM; data->udev = udev; data->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress;