Input: xpad - don't use GFP_ATOMIC
GFP_ATOMIC should not be used when GFP_KERNEL can be used. Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
99de0912be
commit
6eae9b0acd
@@ -497,7 +497,7 @@ static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
xpad->odata = usb_buffer_alloc(xpad->udev, XPAD_PKT_LEN,
|
xpad->odata = usb_buffer_alloc(xpad->udev, XPAD_PKT_LEN,
|
||||||
GFP_ATOMIC, &xpad->odata_dma );
|
GFP_KERNEL, &xpad->odata_dma);
|
||||||
if (!xpad->odata)
|
if (!xpad->odata)
|
||||||
goto fail1;
|
goto fail1;
|
||||||
|
|
||||||
@@ -729,7 +729,7 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id
|
|||||||
goto fail1;
|
goto fail1;
|
||||||
|
|
||||||
xpad->idata = usb_buffer_alloc(udev, XPAD_PKT_LEN,
|
xpad->idata = usb_buffer_alloc(udev, XPAD_PKT_LEN,
|
||||||
GFP_ATOMIC, &xpad->idata_dma);
|
GFP_KERNEL, &xpad->idata_dma);
|
||||||
if (!xpad->idata)
|
if (!xpad->idata)
|
||||||
goto fail1;
|
goto fail1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user