mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
media: redrat3: no unnecessary GFP_ATOMIC
During resume() GFP_NOIO will do. No need for GFP_ATOMIC Signed-off-by: Oliver Neukum <oneukum@suse.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
8332f75a5b
commit
407cba97c4
@@ -1155,9 +1155,9 @@ static int redrat3_dev_resume(struct usb_interface *intf)
|
||||
{
|
||||
struct redrat3_dev *rr3 = usb_get_intfdata(intf);
|
||||
|
||||
if (usb_submit_urb(rr3->narrow_urb, GFP_ATOMIC))
|
||||
if (usb_submit_urb(rr3->narrow_urb, GFP_NOIO))
|
||||
return -EIO;
|
||||
if (usb_submit_urb(rr3->wide_urb, GFP_ATOMIC))
|
||||
if (usb_submit_urb(rr3->wide_urb, GFP_NOIO))
|
||||
return -EIO;
|
||||
led_classdev_resume(&rr3->led);
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user