From: Jan Kratochvil Date: Fri, 15 Jun 2007 03:33:13 +0000 (-0400) Subject: Input: xpad - fix check for succesful usb_buffer_alloc X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2e8335a629e48a753642772a5fe758c12d2e48bf;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git Input: xpad - fix check for succesful usb_buffer_alloc Signed-off-by: Jan Kratochvil Signed-off-by: Dmitry Torokhov --- 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) xpad->odata = usb_buffer_alloc(xpad->udev, XPAD_PKT_LEN, GFP_ATOMIC, &xpad->odata_dma ); - if (!xpad->idata) + if (!xpad->odata) goto fail1; xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);