This is a note to let you know that I've just added the patch titled Input: xpad - fix wireless 360 controller breaking after suspend to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: input-xpad-fix-wireless-360-controller-breaking-after-suspend.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a17b9841152e7f4621619902b347e2cc39c32996 Mon Sep 17 00:00:00 2001 From: Cameron Gutman <aicommander@xxxxxxxxx> Date: Thu, 18 Aug 2022 17:44:09 +0200 Subject: Input: xpad - fix wireless 360 controller breaking after suspend From: Cameron Gutman <aicommander@xxxxxxxxx> commit a17b9841152e7f4621619902b347e2cc39c32996 upstream. Suspending and resuming the system can sometimes cause the out URB to get hung after a reset_resume. This causes LED setting and force feedback to break on resume. To avoid this, just drop the reset_resume callback so the USB core rebinds xpad to the wireless pads on resume if a reset happened. A nice side effect of this change is the LED ring on wireless controllers is now set correctly on system resume. Cc: stable@xxxxxxxxxxxxxxx Fixes: 4220f7db1e42 ("Input: xpad - workaround dead irq_out after suspend/ resume") Signed-off-by: Cameron Gutman <aicommander@xxxxxxxxx> Signed-off-by: Pavel Rojtberg <rojtberg@xxxxxxxxx> Link: https://lore.kernel.org/r/20220818154411.510308-3-rojtberg@xxxxxxxxx Signed-off-by: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/input/joystick/xpad.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -2000,7 +2000,6 @@ static struct usb_driver xpad_driver = { .disconnect = xpad_disconnect, .suspend = xpad_suspend, .resume = xpad_resume, - .reset_resume = xpad_resume, .id_table = xpad_table, }; Patches currently in stable-queue which might be from aicommander@xxxxxxxxx are queue-4.9/input-xpad-fix-wireless-360-controller-breaking-after-suspend.patch