Message ID | 20141108104015.635a7388@notabene.brown (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sat, Nov 08, 2014 at 10:40:15AM +1100, NeilBrown wrote: > > > This button is treated as a wakeup source, so we need to initialise it > correctly. > > Without the device_init_wakeup() call, dev->power.wakeup will > be NULL, and pm_wakeup_event() will do nothing. > > Signed-off-by: NeilBrown <neilb@suse.de> Applied, thank you. > > diff --git a/drivers/input/misc/twl4030-pwrbutton.c b/drivers/input/misc/twl4030-pwrbutton.c > index fb3b63b2f85c..8400a1a34d87 100644 > --- a/drivers/input/misc/twl4030-pwrbutton.c > +++ b/drivers/input/misc/twl4030-pwrbutton.c > @@ -85,6 +85,7 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev) > } > > platform_set_drvdata(pdev, pwr); > + device_init_wakeup(&pdev->dev, true); > > return 0; > }
diff --git a/drivers/input/misc/twl4030-pwrbutton.c b/drivers/input/misc/twl4030-pwrbutton.c index fb3b63b2f85c..8400a1a34d87 100644 --- a/drivers/input/misc/twl4030-pwrbutton.c +++ b/drivers/input/misc/twl4030-pwrbutton.c @@ -85,6 +85,7 @@ static int twl4030_pwrbutton_probe(struct platform_device *pdev) } platform_set_drvdata(pdev, pwr); + device_init_wakeup(&pdev->dev, true); return 0; }
This button is treated as a wakeup source, so we need to initialise it correctly. Without the device_init_wakeup() call, dev->power.wakeup will be NULL, and pm_wakeup_event() will do nothing. Signed-off-by: NeilBrown <neilb@suse.de>