Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efd756da authored by Rafael J. Wysocki's avatar Rafael J. Wysocki
Browse files

ACPI / PCC: Use pr_debug() for debug messages in pcc_init()



pcc_init() uses pr_err() to print two messages that are really debug
and not interesting to users.  Replace those pr_err() with pr_debug().

Reported-by: default avatarCristian <caravena@gmail.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent e36f014e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -386,7 +386,7 @@ static int __init pcc_init(void)
	ret = acpi_pcc_probe();

	if (ret) {
		pr_err("ACPI PCC probe failed.\n");
		pr_debug("ACPI PCC probe failed.\n");
		return -ENODEV;
	}

@@ -394,7 +394,7 @@ static int __init pcc_init(void)
			pcc_mbox_probe, NULL, 0, NULL, 0);

	if (!pcc_pdev) {
		pr_err("Err creating PCC platform bundle\n");
		pr_debug("Err creating PCC platform bundle\n");
		return -ENODEV;
	}