This is an automatic generated email to let you know that the following patch were queued:
Subject: media: as102: avoid GFP_ATOMIC Author: Oliver Neukum <[email protected]> Date: Tue May 17 12:10:49 2022 +0100 No need for GFP_ATOMIC during probe() Link: https://lore.kernel.org/linux-media/[email protected] Signed-off-by: Oliver Neukum <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> drivers/media/usb/as102/as102_usb_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- diff --git a/drivers/media/usb/as102/as102_usb_drv.c b/drivers/media/usb/as102/as102_usb_drv.c index 6b380144d6c2..e0ef66a522e2 100644 --- a/drivers/media/usb/as102/as102_usb_drv.c +++ b/drivers/media/usb/as102/as102_usb_drv.c @@ -259,7 +259,7 @@ static int as102_alloc_usb_stream_buffer(struct as102_dev_t *dev) for (i = 0; i < MAX_STREAM_URB; i++) { struct urb *urb; - urb = usb_alloc_urb(0, GFP_ATOMIC); + urb = usb_alloc_urb(0, GFP_KERNEL); if (urb == NULL) { as102_free_usb_stream_buffer(dev); return -ENOMEM;
