* [PATCH] Input: xpad - Turn off wireless controllers on shutdown
@ 2022-03-24 14:53 Stephen Douthit
0 siblings, 0 replies; only message in thread
From: Stephen Douthit @ 2022-03-24 14:53 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: Stephen Douthit, linux-input, linux-kernel
We already do this on suspend, makes sense for shutdown as well
Signed-off-by: Stephen Douthit <stephen.douthit@gmail.com>
---
drivers/input/joystick/xpad.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index 18190b529bca..8be79f91ba56 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -1738,6 +1738,16 @@ static int xpad_init_input(struct usb_xpad *xpad)
return error;
}
+static void xpad360w_shutdown(struct device *dev)
+{
+ struct usb_interface *intf = to_usb_interface(dev);
+ struct usb_xpad *xpad = usb_get_intfdata(intf);
+
+ xpad360w_stop_input(xpad);
+ if (xpad->pad_present)
+ xpad360w_poweroff_controller(xpad);
+}
+
static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
struct usb_device *udev = interface_to_usbdev(intf);
@@ -1863,6 +1873,12 @@ static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id
* here in this driver and in usb core.
*/
udev->quirks |= USB_QUIRK_RESET_RESUME;
+
+ /*
+ * Populate shutdown callback so wireless controllers turn off
+ * when the machine turns off
+ */
+ intf->dev.driver->shutdown = xpad360w_shutdown;
} else {
error = xpad_init_input(xpad);
if (error)
--
2.35.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-03-24 14:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-24 14:53 [PATCH] Input: xpad - Turn off wireless controllers on shutdown Stephen Douthit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).