All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks
@ 2023-02-14 15:25 Arnd Bergmann
  2023-02-14 16:36 ` Limonciello, Mario
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2023-02-14 15:25 UTC (permalink / raw)
  To: Shyam Sundar S K, Hans de Goede, Mark Gross
  Cc: Arnd Bergmann, Mario Limonciello, Nathan Chancellor,
	Rafael J. Wysocki, platform-driver-x86, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

The amd_pmc_write_stb() function was previously hidden in an
ifdef to avoid a warning when CONFIG_SUSPEND is disabled, but
now there is an additional caller:

drivers/platform/x86/amd/pmc.c: In function 'amd_pmc_stb_debugfs_open_v2':
drivers/platform/x86/amd/pmc.c:256:8: error: implicit declaration of function 'amd_pmc_write_stb'; did you mean 'amd_pmc_read_stb'? [-Werror=implicit-function-declaration]
  256 |  ret = amd_pmc_write_stb(dev, AMD_PMC_STB_DUMMY_PC);
      |        ^~~~~~~~~~~~~~~~~
      |        amd_pmc_read_stb

There is now an easier way to handle this by using DEFINE_SIMPLE_DEV_PM_OPS()
to replace all the #ifdefs, letting gcc drop any of the unused functions
silently.

Fixes: b0d4bb973539 ("platform/x86/amd: pmc: Write dummy postcode into the STB DRAM")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/platform/x86/amd/pmc.c | 25 ++++++-------------------
 1 file changed, 6 insertions(+), 19 deletions(-)

diff --git a/drivers/platform/x86/amd/pmc.c b/drivers/platform/x86/amd/pmc.c
index ab05b9ee6655..641085906baf 100644
--- a/drivers/platform/x86/amd/pmc.c
+++ b/drivers/platform/x86/amd/pmc.c
@@ -171,9 +171,7 @@ MODULE_PARM_DESC(disable_workarounds, "Disable workarounds for platform bugs");
 static struct amd_pmc_dev pmc;
 static int amd_pmc_send_cmd(struct amd_pmc_dev *dev, u32 arg, u32 *data, u8 msg, bool ret);
 static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf);
-#ifdef CONFIG_SUSPEND
 static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data);
-#endif
 
 static inline u32 amd_pmc_reg_read(struct amd_pmc_dev *dev, int reg_offset)
 {
@@ -386,7 +384,6 @@ static int get_metrics_table(struct amd_pmc_dev *pdev, struct smu_metrics *table
 	return 0;
 }
 
-#ifdef CONFIG_SUSPEND
 static void amd_pmc_validate_deepest(struct amd_pmc_dev *pdev)
 {
 	struct smu_metrics table;
@@ -400,7 +397,6 @@ static void amd_pmc_validate_deepest(struct amd_pmc_dev *pdev)
 		dev_dbg(pdev->dev, "Last suspend in deepest state for %lluus\n",
 			 table.timein_s0i3_lastcapture);
 }
-#endif
 
 static int amd_pmc_get_smu_version(struct amd_pmc_dev *dev)
 {
@@ -673,7 +669,6 @@ static int amd_pmc_send_cmd(struct amd_pmc_dev *dev, u32 arg, u32 *data, u8 msg,
 	return rc;
 }
 
-#ifdef CONFIG_SUSPEND
 static int amd_pmc_get_os_hint(struct amd_pmc_dev *dev)
 {
 	switch (dev->cpu_id) {
@@ -861,9 +856,7 @@ static int __maybe_unused amd_pmc_suspend_handler(struct device *dev)
 	return 0;
 }
 
-static SIMPLE_DEV_PM_OPS(amd_pmc_pm, amd_pmc_suspend_handler, NULL);
-
-#endif
+static DEFINE_SIMPLE_DEV_PM_OPS(amd_pmc_pm, amd_pmc_suspend_handler, NULL);
 
 static const struct pci_device_id pmc_pci_ids[] = {
 	{ PCI_DEVICE(PCI_VENDOR_ID_AMD, AMD_CPU_ID_PS) },
@@ -905,7 +898,6 @@ static int amd_pmc_s2d_init(struct amd_pmc_dev *dev)
 	return 0;
 }
 
-#ifdef CONFIG_SUSPEND
 static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data)
 {
 	int err;
@@ -926,7 +918,6 @@ static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data)
 
 	return 0;
 }
-#endif
 
 static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf)
 {
@@ -1017,11 +1008,10 @@ static int amd_pmc_probe(struct platform_device *pdev)
 	}
 
 	platform_set_drvdata(pdev, dev);
-#ifdef CONFIG_SUSPEND
-	err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
+	if (IS_ENABLED(CONFIG_SUSPEND))
+		err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
 	if (err)
 		dev_warn(dev->dev, "failed to register LPS0 sleep handler, expect increased power consumption\n");
-#endif
 
 	amd_pmc_dbgfs_register(dev);
 	return 0;
@@ -1035,9 +1025,8 @@ static int amd_pmc_remove(struct platform_device *pdev)
 {
 	struct amd_pmc_dev *dev = platform_get_drvdata(pdev);
 
-#ifdef CONFIG_SUSPEND
-	acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
-#endif
+	if (IS_ENABLED(CONFIG_SUSPEND))
+		acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
 	amd_pmc_dbgfs_unregister(dev);
 	pci_dev_put(dev->rdev);
 	mutex_destroy(&dev->lock);
@@ -1061,9 +1050,7 @@ static struct platform_driver amd_pmc_driver = {
 		.name = "amd_pmc",
 		.acpi_match_table = amd_pmc_acpi_ids,
 		.dev_groups = pmc_groups,
-#ifdef CONFIG_SUSPEND
-		.pm = &amd_pmc_pm,
-#endif
+		.pm = pm_sleep_ptr(&amd_pmc_pm),
 	},
 	.probe = amd_pmc_probe,
 	.remove = amd_pmc_remove,
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks
  2023-02-14 15:25 [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks Arnd Bergmann
@ 2023-02-14 16:36 ` Limonciello, Mario
  2023-03-01 12:05   ` Hans de Goede
  0 siblings, 1 reply; 3+ messages in thread
From: Limonciello, Mario @ 2023-02-14 16:36 UTC (permalink / raw)
  To: Arnd Bergmann, S-k, Shyam-sundar, Hans de Goede, Mark Gross
  Cc: Arnd Bergmann, Nathan Chancellor, Rafael J. Wysocki,
	platform-driver-x86, linux-kernel

[Public]



> -----Original Message-----
> From: Arnd Bergmann <arnd@kernel.org>
> Sent: Tuesday, February 14, 2023 09:25
> To: S-k, Shyam-sundar <Shyam-sundar.S-k@amd.com>; Hans de Goede
> <hdegoede@redhat.com>; Mark Gross <markgross@kernel.org>
> Cc: Arnd Bergmann <arnd@arndb.de>; Limonciello, Mario
> <Mario.Limonciello@amd.com>; Nathan Chancellor <nathan@kernel.org>;
> Rafael J. Wysocki <rafael.j.wysocki@intel.com>; platform-driver-
> x86@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks
> 
> From: Arnd Bergmann <arnd@arndb.de>
> 
> The amd_pmc_write_stb() function was previously hidden in an
> ifdef to avoid a warning when CONFIG_SUSPEND is disabled, but
> now there is an additional caller:
> 
> drivers/platform/x86/amd/pmc.c: In function
> 'amd_pmc_stb_debugfs_open_v2':
> drivers/platform/x86/amd/pmc.c:256:8: error: implicit declaration of function
> 'amd_pmc_write_stb'; did you mean 'amd_pmc_read_stb'? [-
> Werror=implicit-function-declaration]
>   256 |  ret = amd_pmc_write_stb(dev, AMD_PMC_STB_DUMMY_PC);
>       |        ^~~~~~~~~~~~~~~~~
>       |        amd_pmc_read_stb
> 
> There is now an easier way to handle this by using
> DEFINE_SIMPLE_DEV_PM_OPS()
> to replace all the #ifdefs, letting gcc drop any of the unused functions
> silently.
> 
> Fixes: b0d4bb973539 ("platform/x86/amd: pmc: Write dummy postcode into
> the STB DRAM")

I suspect this is not an appropriate fixes tag.  SIMPLE_DEV_PM_OPS only came in
8e60615e89321 ("platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN")

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
>  drivers/platform/x86/amd/pmc.c | 25 ++++++-------------------
>  1 file changed, 6 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/platform/x86/amd/pmc.c
> b/drivers/platform/x86/amd/pmc.c
> index ab05b9ee6655..641085906baf 100644
> --- a/drivers/platform/x86/amd/pmc.c
> +++ b/drivers/platform/x86/amd/pmc.c
> @@ -171,9 +171,7 @@ MODULE_PARM_DESC(disable_workarounds,
> "Disable workarounds for platform bugs");
>  static struct amd_pmc_dev pmc;
>  static int amd_pmc_send_cmd(struct amd_pmc_dev *dev, u32 arg, u32
> *data, u8 msg, bool ret);
>  static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf);
> -#ifdef CONFIG_SUSPEND
>  static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data);
> -#endif
> 
>  static inline u32 amd_pmc_reg_read(struct amd_pmc_dev *dev, int
> reg_offset)
>  {
> @@ -386,7 +384,6 @@ static int get_metrics_table(struct amd_pmc_dev
> *pdev, struct smu_metrics *table
>  	return 0;
>  }
> 
> -#ifdef CONFIG_SUSPEND
>  static void amd_pmc_validate_deepest(struct amd_pmc_dev *pdev)
>  {
>  	struct smu_metrics table;
> @@ -400,7 +397,6 @@ static void amd_pmc_validate_deepest(struct
> amd_pmc_dev *pdev)
>  		dev_dbg(pdev->dev, "Last suspend in deepest state for
> %lluus\n",
>  			 table.timein_s0i3_lastcapture);
>  }
> -#endif
> 
>  static int amd_pmc_get_smu_version(struct amd_pmc_dev *dev)
>  {
> @@ -673,7 +669,6 @@ static int amd_pmc_send_cmd(struct amd_pmc_dev
> *dev, u32 arg, u32 *data, u8 msg,
>  	return rc;
>  }
> 
> -#ifdef CONFIG_SUSPEND
>  static int amd_pmc_get_os_hint(struct amd_pmc_dev *dev)
>  {
>  	switch (dev->cpu_id) {
> @@ -861,9 +856,7 @@ static int __maybe_unused
> amd_pmc_suspend_handler(struct device *dev)
>  	return 0;
>  }
> 
> -static SIMPLE_DEV_PM_OPS(amd_pmc_pm, amd_pmc_suspend_handler,
> NULL);
> -
> -#endif
> +static DEFINE_SIMPLE_DEV_PM_OPS(amd_pmc_pm,
> amd_pmc_suspend_handler, NULL);
> 
>  static const struct pci_device_id pmc_pci_ids[] = {
>  	{ PCI_DEVICE(PCI_VENDOR_ID_AMD, AMD_CPU_ID_PS) },
> @@ -905,7 +898,6 @@ static int amd_pmc_s2d_init(struct amd_pmc_dev
> *dev)
>  	return 0;
>  }
> 
> -#ifdef CONFIG_SUSPEND
>  static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data)
>  {
>  	int err;
> @@ -926,7 +918,6 @@ static int amd_pmc_write_stb(struct amd_pmc_dev
> *dev, u32 data)
> 
>  	return 0;
>  }
> -#endif
> 
>  static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf)
>  {
> @@ -1017,11 +1008,10 @@ static int amd_pmc_probe(struct
> platform_device *pdev)
>  	}
> 
>  	platform_set_drvdata(pdev, dev);
> -#ifdef CONFIG_SUSPEND
> -	err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
> +	if (IS_ENABLED(CONFIG_SUSPEND))
> +		err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
>  	if (err)
>  		dev_warn(dev->dev, "failed to register LPS0 sleep handler,
> expect increased power consumption\n");
> -#endif
> 
>  	amd_pmc_dbgfs_register(dev);
>  	return 0;
> @@ -1035,9 +1025,8 @@ static int amd_pmc_remove(struct platform_device
> *pdev)
>  {
>  	struct amd_pmc_dev *dev = platform_get_drvdata(pdev);
> 
> -#ifdef CONFIG_SUSPEND
> -	acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
> -#endif
> +	if (IS_ENABLED(CONFIG_SUSPEND))
> +		acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
>  	amd_pmc_dbgfs_unregister(dev);
>  	pci_dev_put(dev->rdev);
>  	mutex_destroy(&dev->lock);
> @@ -1061,9 +1050,7 @@ static struct platform_driver amd_pmc_driver = {
>  		.name = "amd_pmc",
>  		.acpi_match_table = amd_pmc_acpi_ids,
>  		.dev_groups = pmc_groups,
> -#ifdef CONFIG_SUSPEND
> -		.pm = &amd_pmc_pm,
> -#endif
> +		.pm = pm_sleep_ptr(&amd_pmc_pm),
>  	},
>  	.probe = amd_pmc_probe,
>  	.remove = amd_pmc_remove,
> --
> 2.39.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks
  2023-02-14 16:36 ` Limonciello, Mario
@ 2023-03-01 12:05   ` Hans de Goede
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2023-03-01 12:05 UTC (permalink / raw)
  To: Limonciello, Mario, Arnd Bergmann, S-k, Shyam-sundar, Mark Gross
  Cc: Arnd Bergmann, Nathan Chancellor, Rafael J. Wysocki,
	platform-driver-x86, linux-kernel

Hi Mario, Arnd,

On 2/14/23 17:36, Limonciello, Mario wrote:
> [Public]
> 
> 
> 
>> -----Original Message-----
>> From: Arnd Bergmann <arnd@kernel.org>
>> Sent: Tuesday, February 14, 2023 09:25
>> To: S-k, Shyam-sundar <Shyam-sundar.S-k@amd.com>; Hans de Goede
>> <hdegoede@redhat.com>; Mark Gross <markgross@kernel.org>
>> Cc: Arnd Bergmann <arnd@arndb.de>; Limonciello, Mario
>> <Mario.Limonciello@amd.com>; Nathan Chancellor <nathan@kernel.org>;
>> Rafael J. Wysocki <rafael.j.wysocki@intel.com>; platform-driver-
>> x86@vger.kernel.org; linux-kernel@vger.kernel.org
>> Subject: [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks
>>
>> From: Arnd Bergmann <arnd@arndb.de>
>>
>> The amd_pmc_write_stb() function was previously hidden in an
>> ifdef to avoid a warning when CONFIG_SUSPEND is disabled, but
>> now there is an additional caller:
>>
>> drivers/platform/x86/amd/pmc.c: In function
>> 'amd_pmc_stb_debugfs_open_v2':
>> drivers/platform/x86/amd/pmc.c:256:8: error: implicit declaration of function
>> 'amd_pmc_write_stb'; did you mean 'amd_pmc_read_stb'? [-
>> Werror=implicit-function-declaration]
>>   256 |  ret = amd_pmc_write_stb(dev, AMD_PMC_STB_DUMMY_PC);
>>       |        ^~~~~~~~~~~~~~~~~
>>       |        amd_pmc_read_stb
>>
>> There is now an easier way to handle this by using
>> DEFINE_SIMPLE_DEV_PM_OPS()
>> to replace all the #ifdefs, letting gcc drop any of the unused functions
>> silently.
>>
>> Fixes: b0d4bb973539 ("platform/x86/amd: pmc: Write dummy postcode into
>> the STB DRAM")
> 
> I suspect this is not an appropriate fixes tag.  SIMPLE_DEV_PM_OPS only came in
> 8e60615e89321 ("platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN")

That commit is older then the fixes commit Arnd points to,
Arnd's Fixes tag points to the commit causing the compile error
Arnd hit, which is one of the last commits to drivers/platform/x86/amd/pmc.c .

So the Fixes tag seems fine to me.

I've applied this patch to my review-hans branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans

Note I've squashed in one small fixup, see my inline comment below.

I'll rebase that branch once 6.3-rc1 is out and then push the rebased
patch to the fixes branch and include it in my next 6.3 fixes pull-req
to Linus.

>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>> ---
>>  drivers/platform/x86/amd/pmc.c | 25 ++++++-------------------
>>  1 file changed, 6 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/platform/x86/amd/pmc.c
>> b/drivers/platform/x86/amd/pmc.c
>> index ab05b9ee6655..641085906baf 100644
>> --- a/drivers/platform/x86/amd/pmc.c
>> +++ b/drivers/platform/x86/amd/pmc.c
>> @@ -171,9 +171,7 @@ MODULE_PARM_DESC(disable_workarounds,
>> "Disable workarounds for platform bugs");
>>  static struct amd_pmc_dev pmc;
>>  static int amd_pmc_send_cmd(struct amd_pmc_dev *dev, u32 arg, u32
>> *data, u8 msg, bool ret);
>>  static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf);
>> -#ifdef CONFIG_SUSPEND
>>  static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data);
>> -#endif
>>
>>  static inline u32 amd_pmc_reg_read(struct amd_pmc_dev *dev, int
>> reg_offset)
>>  {
>> @@ -386,7 +384,6 @@ static int get_metrics_table(struct amd_pmc_dev
>> *pdev, struct smu_metrics *table
>>  	return 0;
>>  }
>>
>> -#ifdef CONFIG_SUSPEND
>>  static void amd_pmc_validate_deepest(struct amd_pmc_dev *pdev)
>>  {
>>  	struct smu_metrics table;
>> @@ -400,7 +397,6 @@ static void amd_pmc_validate_deepest(struct
>> amd_pmc_dev *pdev)
>>  		dev_dbg(pdev->dev, "Last suspend in deepest state for
>> %lluus\n",
>>  			 table.timein_s0i3_lastcapture);
>>  }
>> -#endif
>>
>>  static int amd_pmc_get_smu_version(struct amd_pmc_dev *dev)
>>  {
>> @@ -673,7 +669,6 @@ static int amd_pmc_send_cmd(struct amd_pmc_dev
>> *dev, u32 arg, u32 *data, u8 msg,
>>  	return rc;
>>  }
>>
>> -#ifdef CONFIG_SUSPEND
>>  static int amd_pmc_get_os_hint(struct amd_pmc_dev *dev)
>>  {
>>  	switch (dev->cpu_id) {
>> @@ -861,9 +856,7 @@ static int __maybe_unused
>> amd_pmc_suspend_handler(struct device *dev)
>>  	return 0;
>>  }
>>
>> -static SIMPLE_DEV_PM_OPS(amd_pmc_pm, amd_pmc_suspend_handler,
>> NULL);
>> -
>> -#endif
>> +static DEFINE_SIMPLE_DEV_PM_OPS(amd_pmc_pm,
>> amd_pmc_suspend_handler, NULL);
>>
>>  static const struct pci_device_id pmc_pci_ids[] = {
>>  	{ PCI_DEVICE(PCI_VENDOR_ID_AMD, AMD_CPU_ID_PS) },
>> @@ -905,7 +898,6 @@ static int amd_pmc_s2d_init(struct amd_pmc_dev
>> *dev)
>>  	return 0;
>>  }
>>
>> -#ifdef CONFIG_SUSPEND
>>  static int amd_pmc_write_stb(struct amd_pmc_dev *dev, u32 data)
>>  {
>>  	int err;
>> @@ -926,7 +918,6 @@ static int amd_pmc_write_stb(struct amd_pmc_dev
>> *dev, u32 data)
>>
>>  	return 0;
>>  }
>> -#endif
>>
>>  static int amd_pmc_read_stb(struct amd_pmc_dev *dev, u32 *buf)
>>  {
>> @@ -1017,11 +1008,10 @@ static int amd_pmc_probe(struct
>> platform_device *pdev)
>>  	}
>>
>>  	platform_set_drvdata(pdev, dev);
>> -#ifdef CONFIG_SUSPEND
>> -	err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
>> +	if (IS_ENABLED(CONFIG_SUSPEND))
>> +		err = acpi_register_lps0_dev(&amd_pmc_s2idle_dev_ops);
>>  	if (err)
>>  		dev_warn(dev->dev, "failed to register LPS0 sleep handler,

This will work since err is guaranteed to be 0 here, but IMHO it is
cleaner to put the err check for the acpi_register_lps0_dev() check
inside the if block.

I have fixed this up while applying the patch.

Regards,

Hans



>> expect increased power consumption\n");
>> -#endif
>>
>>  	amd_pmc_dbgfs_register(dev);
>>  	return 0;
>> @@ -1035,9 +1025,8 @@ static int amd_pmc_remove(struct platform_device
>> *pdev)
>>  {
>>  	struct amd_pmc_dev *dev = platform_get_drvdata(pdev);
>>
>> -#ifdef CONFIG_SUSPEND
>> -	acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
>> -#endif
>> +	if (IS_ENABLED(CONFIG_SUSPEND))
>> +		acpi_unregister_lps0_dev(&amd_pmc_s2idle_dev_ops);
>>  	amd_pmc_dbgfs_unregister(dev);
>>  	pci_dev_put(dev->rdev);
>>  	mutex_destroy(&dev->lock);
>> @@ -1061,9 +1050,7 @@ static struct platform_driver amd_pmc_driver = {
>>  		.name = "amd_pmc",
>>  		.acpi_match_table = amd_pmc_acpi_ids,
>>  		.dev_groups = pmc_groups,
>> -#ifdef CONFIG_SUSPEND
>> -		.pm = &amd_pmc_pm,
>> -#endif
>> +		.pm = pm_sleep_ptr(&amd_pmc_pm),
>>  	},
>>  	.probe = amd_pmc_probe,
>>  	.remove = amd_pmc_remove,
>> --
>> 2.39.1
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-01 12:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-14 15:25 [PATCH] platform/x86/amd: pmc: remove CONFIG_SUSPEND checks Arnd Bergmann
2023-02-14 16:36 ` Limonciello, Mario
2023-03-01 12:05   ` Hans de Goede

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.