mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-10 14:43:54 +08:00
Input: xpad - add X-Box Adaptive XBox button
Adaptive controller sets 0x02 bit for this button, all others set 0x01 so presence of either is used for BTN_MODE. Signed-off-by: Nate Yocom <nate@yocom.org> Tested-by: Bastien Nocera <hadess@hadess.net> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com Link: https://lore.kernel.org/r/20220908173930.28940-3-nate@yocom.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
d218fe0433
commit
f45aaae620
@ -969,7 +969,8 @@ static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char
|
||||
if (data[1] == (GIP_OPT_ACK | GIP_OPT_INTERNAL))
|
||||
xpadone_ack_mode_report(xpad, data[2]);
|
||||
|
||||
input_report_key(dev, BTN_MODE, data[4] & BIT(0));
|
||||
input_report_key(dev, BTN_MODE, data[4] & GENMASK(1, 0));
|
||||
input_sync(dev);
|
||||
|
||||
do_sync = true;
|
||||
} else if (data[0] == GIP_CMD_FIRMWARE) {
|
||||
|
Loading…
Reference in New Issue
Block a user