aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2007-10-17 02:31:06 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-17 11:43:04 -0400
commit36e02b62084efa72f1f04c95e13295a456f394c2 (patch)
tree1fc2528c4508d83c34b25a46fee7266e2ce9f183 /drivers
parente8e961574b5b417d3fc277cbf436081fce4fc2e1 (diff)
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: Rafael 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: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pnp/pnpacpi/core.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/drivers/pnp/pnpacpi/core.c b/drivers/pnp/pnpacpi/core.c
index a5a372222d69..e6a2a9fc7f0a 100644
--- a/drivers/pnp/pnpacpi/core.c
+++ b/drivers/pnp/pnpacpi/core.c
@@ -130,11 +130,16 @@ static int pnpacpi_disable_resources(struct pnp_dev *dev)
130#ifdef CONFIG_ACPI_SLEEP 130#ifdef CONFIG_ACPI_SLEEP
131static int pnpacpi_suspend(struct pnp_dev *dev, pm_message_t state) 131static int pnpacpi_suspend(struct pnp_dev *dev, pm_message_t state)
132{ 132{
133 return acpi_bus_set_power((acpi_handle) dev->data, 133 int power_state;
134 acpi_pm_device_sleep_state(&dev->dev, 134
135 device_may_wakeup 135 power_state = acpi_pm_device_sleep_state(&dev->dev,
136 (&dev->dev), 136 device_may_wakeup(&dev->dev),
137 NULL)); 137 NULL);
138 if (power_state < 0)
139 power_state = (state.event == PM_EVENT_ON) ?
140 ACPI_STATE_D0 : ACPI_STATE_D3;
141
142 return acpi_bus_set_power((acpi_handle) dev->data, power_state);
138} 143}
139 144
140static int pnpacpi_resume(struct pnp_dev *dev) 145static int pnpacpi_resume(struct pnp_dev *dev)