diff mbox

PCI / PM: Clean up outdated comments in pci_target_state()

Message ID 2360046.ecez94sF1Y@aspire.rjw.lan (mailing list archive)
State Mainlined
Delegated to: Rafael Wysocki
Headers show

Commit Message

Rafael J. Wysocki May 21, 2018, 11:11 a.m. UTC
From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Two comments in pci_target_state() are outdated, as the function
doesn't set the target power state for the device any more, only
finds one for it, so fix them accordingly.

Reported-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---
 drivers/pci/pci.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

Comments

Bjorn Helgaas May 22, 2018, 1:06 p.m. UTC | #1
On Mon, May 21, 2018 at 01:11:12PM +0200, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> 
> Two comments in pci_target_state() are outdated, as the function
> doesn't set the target power state for the device any more, only
> finds one for it, so fix them accordingly.
> 
> Reported-by: Bjorn Helgaas <bhelgaas@google.com>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Acked-by: Bjorn Helgaas <bhelgaas@google.com>

I assume you'll merge this; let me know if you'd rather that I take it.

> ---
>  drivers/pci/pci.c |    6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> Index: linux-pm/drivers/pci/pci.c
> ===================================================================
> --- linux-pm.orig/drivers/pci/pci.c
> +++ linux-pm/drivers/pci/pci.c
> @@ -2025,8 +2025,7 @@ static pci_power_t pci_target_state(stru
>  
>  	if (platform_pci_power_manageable(dev)) {
>  		/*
> -		 * Call the platform to choose the target state of the device
> -		 * and enable wake-up from this state if supported.
> +		 * Call the platform to find the target state for the device.
>  		 */
>  		pci_power_t state = platform_pci_choose_state(dev);
>  
> @@ -2059,8 +2058,7 @@ static pci_power_t pci_target_state(stru
>  	if (wakeup) {
>  		/*
>  		 * Find the deepest state from which the device can generate
> -		 * wake-up events, make it the target state and enable device
> -		 * to generate PME#.
> +		 * PME#.
>  		 */
>  		if (dev->pme_support) {
>  			while (target_state
>
Rafael J. Wysocki May 22, 2018, 3:21 p.m. UTC | #2
On Tue, May 22, 2018 at 3:06 PM, Bjorn Helgaas <helgaas@kernel.org> wrote:
> On Mon, May 21, 2018 at 01:11:12PM +0200, Rafael J. Wysocki wrote:
>> From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
>>
>> Two comments in pci_target_state() are outdated, as the function
>> doesn't set the target power state for the device any more, only
>> finds one for it, so fix them accordingly.
>>
>> Reported-by: Bjorn Helgaas <bhelgaas@google.com>
>> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
>
> Acked-by: Bjorn Helgaas <bhelgaas@google.com>
>
> I assume you'll merge this; let me know if you'd rather that I take it.

I will take it, thanks!

Can you have a look at https://patchwork.kernel.org/patch/10408977/
too, please, while at it?
diff mbox

Patch

Index: linux-pm/drivers/pci/pci.c
===================================================================
--- linux-pm.orig/drivers/pci/pci.c
+++ linux-pm/drivers/pci/pci.c
@@ -2025,8 +2025,7 @@  static pci_power_t pci_target_state(stru
 
 	if (platform_pci_power_manageable(dev)) {
 		/*
-		 * Call the platform to choose the target state of the device
-		 * and enable wake-up from this state if supported.
+		 * Call the platform to find the target state for the device.
 		 */
 		pci_power_t state = platform_pci_choose_state(dev);
 
@@ -2059,8 +2058,7 @@  static pci_power_t pci_target_state(stru
 	if (wakeup) {
 		/*
 		 * Find the deepest state from which the device can generate
-		 * wake-up events, make it the target state and enable device
-		 * to generate PME#.
+		 * PME#.
 		 */
 		if (dev->pme_support) {
 			while (target_state