]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
PCI PM: Fix handling of devices without PM support by pci_target_state()
authorRafael J. Wysocki <rjw@sisk.pl>
Sun, 14 Jun 2009 19:25:02 +0000 (21:25 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 2 Jul 2009 23:50:31 +0000 (16:50 -0700)
commitef2004be0c36733794512cb0a6ebb8f73efb682b
treefb504fcf79dd2dec1716d44cfa2bc33979b220a8
parent81a4f7d8e89ce49e73c86ce2d1d336a49651168f
PCI PM: Fix handling of devices without PM support by pci_target_state()

commit d2abdf62882d982c58e7a6b09ecdcfcc28075e2e upstream.

If a PCI device is not power-manageable either by the platform, or
with the help of the native PCI PM interface, pci_target_state() will
return either PCI_D3hot, or PCI_POWER_ERROR for it, depending on
whether or not the device is configured to wake up the system.  Alas,
none of these return values is correct, because each of them causes
pci_prepare_to_sleep() to return error code, although it should
complete successfully in such a case.

Fix this problem by making pci_target_state() always return PCI_D0
for devices that cannot be power managed.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/pci/pci.c