mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
media: usb: au0828: au0828-video: don't print error when allocating urb fails
kmalloc will print enough information in case of failure. Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0f578d7cc6
commit
b4d920de70
1 changed files with 0 additions and 1 deletions
|
@ -245,7 +245,6 @@ static int au0828_init_isoc(struct au0828_dev *dev, int max_packets,
|
|||
for (i = 0; i < dev->isoc_ctl.num_bufs; i++) {
|
||||
urb = usb_alloc_urb(max_packets, GFP_KERNEL);
|
||||
if (!urb) {
|
||||
au0828_isocdbg("cannot alloc isoc_ctl.urb %i\n", i);
|
||||
au0828_uninit_isoc(dev);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue