Hi, On 7/14/23 16:44, Shyam Sundar S K wrote: > apmf_get_system_params() failure is not a critical event, reduce its > verbosity from dev_err to dev_dbg. > > Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxx> > Signed-off-by: Shyam Sundar S K <Shyam-sundar.S-k@xxxxxxx> Thank you for your patch-series, I've applied the series to my review-hans branch: https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans Note it will show up in my review-hans branch once I've pushed my local branch there, which might take a while. Once I've run some tests on this branch the patches there will be added to the platform-drivers-x86/for-next branch and eventually will be included in the pdx86 pull-request to Linus for the next merge-window. Regards, Hans > --- > v1->v2: > - Rebase to review-hans branch > > drivers/platform/x86/amd/pmf/acpi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/amd/pmf/acpi.c b/drivers/platform/x86/amd/pmf/acpi.c > index 081e84e116e7..732b15b392ab 100644 > --- a/drivers/platform/x86/amd/pmf/acpi.c > +++ b/drivers/platform/x86/amd/pmf/acpi.c > @@ -289,7 +289,7 @@ int apmf_acpi_init(struct amd_pmf_dev *pmf_dev) > > ret = apmf_get_system_params(pmf_dev); > if (ret) { > - dev_err(pmf_dev->dev, "APMF apmf_get_system_params failed :%d\n", ret); > + dev_dbg(pmf_dev->dev, "APMF apmf_get_system_params failed :%d\n", ret); > goto out; > } >