diff options
author | Jan Kratochvil <honza@jikos.cz> | 2007-06-14 23:33:13 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-07-10 00:35:18 -0400 |
commit | 2e8335a629e48a753642772a5fe758c12d2e48bf (patch) | |
tree | 362eb86a18d7d727d3ef681ea3e433b3e3017981 /drivers | |
parent | 5ec1f7f3e4a4896062dc6a64d38036588733bc23 (diff) |
Input: xpad - fix check for succesful usb_buffer_alloc
Signed-off-by: Jan Kratochvil <honza@jikos.cz>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/joystick/xpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 0c04a26b8122..067ed8d1f8a7 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c | |||
@@ -407,7 +407,7 @@ static int xpad_init_ff(struct usb_interface *intf, struct usb_xpad *xpad) | |||
407 | 407 | ||
408 | xpad->odata = usb_buffer_alloc(xpad->udev, XPAD_PKT_LEN, | 408 | xpad->odata = usb_buffer_alloc(xpad->udev, XPAD_PKT_LEN, |
409 | GFP_ATOMIC, &xpad->odata_dma ); | 409 | GFP_ATOMIC, &xpad->odata_dma ); |
410 | if (!xpad->idata) | 410 | if (!xpad->odata) |
411 | goto fail1; | 411 | goto fail1; |
412 | 412 | ||
413 | xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL); | 413 | xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL); |