Re: [PATCH] PM / PCI: Do not resume any devices in pci_pm_prepare()

2017-09-26 Thread Rafael J. Wysocki
On Tue, Sep 26, 2017 at 11:35 PM, Bjorn Helgaas wrote: > On Mon, Sep 25, 2017 at 01:33:13AM +0200, Rafael J. Wysocki wrote: >> From: Rafael J. Wysocki >> >> It should not be necessary to resume devices with ignore_children set >> in pci_pm_prepare(), because they should be resumed explcitly by >>

Re: [PATCH] PM / PCI: Do not resume any devices in pci_pm_prepare()

2017-09-26 Thread Rafael J. Wysocki
On Tue, Sep 26, 2017 at 11:34 PM, Bjorn Helgaas wrote: > On Mon, Sep 25, 2017 at 01:33:13AM +0200, Rafael J. Wysocki wrote: >> From: Rafael J. Wysocki >> >> It should not be necessary to resume devices with ignore_children set >> in pci_pm_prepare(), because they should be resumed explcitly by >

Re: [PATCH] PM / PCI: Do not resume any devices in pci_pm_prepare()

2017-09-26 Thread Bjorn Helgaas
On Mon, Sep 25, 2017 at 01:33:13AM +0200, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > It should not be necessary to resume devices with ignore_children set > in pci_pm_prepare(), because they should be resumed explcitly by > their children drivers during suspend if need be and they wil

Re: [PATCH] PM / PCI: Do not resume any devices in pci_pm_prepare()

2017-09-26 Thread Bjorn Helgaas
On Mon, Sep 25, 2017 at 01:33:13AM +0200, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > It should not be necessary to resume devices with ignore_children set > in pci_pm_prepare(), because they should be resumed explcitly by s/explcitly/explicitly/ > their children drivers during suspe

[PATCH] PM / PCI: Do not resume any devices in pci_pm_prepare()

2017-09-24 Thread Rafael J. Wysocki
From: Rafael J. Wysocki It should not be necessary to resume devices with ignore_children set in pci_pm_prepare(), because they should be resumed explcitly by their children drivers during suspend if need be and they will be resumed by pci_pm_suspend() after that anyway, so avoid doing that. Sig