media: rc: gpio-ir-recv: Fix support for wake-up
authorFlorian Fainelli <f.fainelli@gmail.com>
Fri, 24 Mar 2023 20:38:33 +0000 (13:38 -0700)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Wed, 12 Apr 2023 07:19:05 +0000 (09:19 +0200)
The driver was intended from the start to be a wake-up source for the
system, however due to the absence of a suitable call to
device_set_wakeup_capable(), the device_may_wakeup() call used to decide
whether to enable the GPIO interrupt as a wake-up source would never
happen. Lookup the DT standard "wakeup-source" property and call
device_init_wakeup() to ensure the device is flagged as being wakeup
capable.

Reported-by: Matthew Lear <matthew.lear@broadcom.com>
Fixes: fd0f6851eb46 ("[media] rc: Add support for GPIO based IR Receiver driver")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/rc/gpio-ir-recv.c

index fb037788ec1088abd0b4b0e8920afafb4ff015da..27f55ea966c651fc054054758d5824916a4b73f3 100644 (file)
@@ -103,6 +103,8 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
                rcdev->map_name = RC_MAP_EMPTY;
 
        gpio_dev->rcdev = rcdev;
+       if (of_property_read_bool(np, "wakeup-source"))
+               device_init_wakeup(dev, true);
 
        rc = devm_rc_register_device(dev, rcdev);
        if (rc < 0) {