Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 36e02b62 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki Committed by Linus Torvalds
Browse files

PNP: make pnpacpi_suspend handle errors



pnpacpi_suspend() doesn't check the result returned by
acpi_pm_device_sleep_state() before passing it to acpi_bus_set_power(),
which may not be desirable.   Make it select the target power state of the
device using its second argument if acpi_pm_device_sleep_state() fails.

Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Looks-ok-to: Pavel Machek <pavel@ucw.cz>
Cc: Adam Belay <ambx1@neo.rr.com>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e8e96157
Loading
Loading
Loading
Loading
+10 −5
Original line number Original line Diff line number Diff line
@@ -130,11 +130,16 @@ static int pnpacpi_disable_resources(struct pnp_dev *dev)
#ifdef CONFIG_ACPI_SLEEP
#ifdef CONFIG_ACPI_SLEEP
static int pnpacpi_suspend(struct pnp_dev *dev, pm_message_t state)
static int pnpacpi_suspend(struct pnp_dev *dev, pm_message_t state)
{
{
	return acpi_bus_set_power((acpi_handle) dev->data,
	int power_state;
				  acpi_pm_device_sleep_state(&dev->dev,

							     device_may_wakeup
	power_state = acpi_pm_device_sleep_state(&dev->dev,
							     (&dev->dev),
						device_may_wakeup(&dev->dev),
							     NULL));
						NULL);
	if (power_state < 0)
		power_state = (state.event == PM_EVENT_ON) ?
				ACPI_STATE_D0 : ACPI_STATE_D3;

	return acpi_bus_set_power((acpi_handle) dev->data, power_state);
}
}


static int pnpacpi_resume(struct pnp_dev *dev)
static int pnpacpi_resume(struct pnp_dev *dev)