[PATCH] USBATM: return correct error code when out of memory
We weren't always returning -ENOMEM. Signed-off-by: Duncan Sands <baldrick@free.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
0e42a627ec
commit
72ef8ab43f
1 changed files with 2 additions and 0 deletions
|
@ -1081,6 +1081,7 @@ int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
|
|||
urb = usb_alloc_urb(iso_packets, GFP_KERNEL);
|
||||
if (!urb) {
|
||||
dev_err(dev, "%s: no memory for urb %d!\n", __func__, i);
|
||||
error = -ENOMEM;
|
||||
goto fail_unbind;
|
||||
}
|
||||
|
||||
|
@ -1090,6 +1091,7 @@ int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
|
|||
buffer = kzalloc(channel->buf_size, GFP_KERNEL);
|
||||
if (!buffer) {
|
||||
dev_err(dev, "%s: no memory for buffer %d!\n", __func__, i);
|
||||
error = -ENOMEM;
|
||||
goto fail_unbind;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue