From: Pavel Rojtberg Date: Tue, 27 Dec 2016 19:44:51 +0000 (-0800) Subject: Input: xpad - use correct product id for x360w controllers X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ab57a375d997059bff09acffa2601725deb9d249;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git Input: xpad - use correct product id for x360w controllers commit b6fc513da50c5dbc457a8ad6b58b046a6a68fd9d upstream. currently the controllers get the same product id as the wireless receiver. However the controllers actually have their own product id. The patch makes the driver expose the same product id as the windows driver. This improves compatibility when running applications with WINE. see https://github.com/paroj/xpad/issues/54 Signed-off-by: Pavel Rojtberg Signed-off-by: Dmitry Torokhov Signed-off-by: Willy Tarreau --- diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 685e125d636..24e5683d6c9 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -901,6 +901,12 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id input_dev->name = xpad_device[i].name; input_dev->phys = xpad->phys; usb_to_input_id(udev, &input_dev->id); + + if (xpad->xtype == XTYPE_XBOX360W) { + /* x360w controllers and the receiver have different ids */ + input_dev->id.product = 0x02a1; + } + input_dev->dev.parent = &intf->dev; input_set_drvdata(input_dev, xpad);