media: flexcop: unneeded ATOMIC
No need for GFP_ATOMIC during probe() Link: https://lore.kernel.org/linux-media/20220517131109.28371-1-oneukum@suse.com Signed-off-by: Oliver Neukum <oneukum@suse.com> Reviewed-by: Johan Hovold <johan@kernel.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
30f7bc001a
commit
f835f3ea6b
@ -448,7 +448,7 @@ static int flexcop_usb_transfer_init(struct flexcop_usb *fc_usb)
|
||||
/* creating iso urbs */
|
||||
for (i = 0; i < B2C2_USB_NUM_ISO_URB; i++) {
|
||||
fc_usb->iso_urb[i] = usb_alloc_urb(B2C2_USB_FRAMES_PER_ISO,
|
||||
GFP_ATOMIC);
|
||||
GFP_KERNEL);
|
||||
if (fc_usb->iso_urb[i] == NULL) {
|
||||
ret = -ENOMEM;
|
||||
goto urb_error;
|
||||
@ -481,7 +481,7 @@ static int flexcop_usb_transfer_init(struct flexcop_usb *fc_usb)
|
||||
frame_offset += frame_size;
|
||||
}
|
||||
|
||||
if ((ret = usb_submit_urb(fc_usb->iso_urb[i],GFP_ATOMIC))) {
|
||||
if ((ret = usb_submit_urb(fc_usb->iso_urb[i],GFP_KERNEL))) {
|
||||
err("submitting urb %d failed with %d.", i, ret);
|
||||
goto urb_error;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user