diff options
author | Pavel Rojtberg <rojtberg@gmail.com> | 2015-10-19 00:06:58 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-10-19 00:11:22 -0700 |
commit | fbe6a3114471cccaeaeabfa56937731503ece545 (patch) | |
tree | b592ae04804f7edd2b579dc52808344fae7d786d /drivers/input | |
parent | 9378c0251c7ac4b247177fb0c292a025ca1b751c (diff) | |
download | op-kernel-dev-fbe6a3114471cccaeaeabfa56937731503ece545.zip op-kernel-dev-fbe6a3114471cccaeaeabfa56937731503ece545.tar.gz |
Input: xpad - fix clash of presence handling with LED setting
Do not call xpad_identify_controller at init with wireless devices: it
conflicts with the already sent presence packet and will be called by
xpad360w_process_packet as needed anyway.
Signed-off-by: Pavel Rojtberg <rojtberg@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/joystick/xpad.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index d382d48..fd4100d 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -1001,8 +1001,15 @@ static int xpad_led_probe(struct usb_xpad *xpad) if (error) goto err_free_id; - /* Light up the segment corresponding to controller number */ - xpad_identify_controller(xpad); + if (xpad->xtype == XTYPE_XBOX360) { + /* + * Light up the segment corresponding to controller + * number on wired devices. On wireless we'll do that + * when they respond to "presence" packet. + */ + xpad_identify_controller(xpad); + } + return 0; err_free_id: |