Skip to content

Commit

Permalink
ACPI: convert ACPI PCC probe failure messages to debug output
Browse files Browse the repository at this point in the history
On every boot, most users will get a message that ACPI PCC probe failed.
Rafael discovered that it's just two print messages that return as an
error instead of debug output.

Lets convert these error messages to debug so we don't see these
messages on boot.
  • Loading branch information
damentz committed Apr 8, 2015
1 parent ec61978 commit 3fcc54d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/mailbox/pcc.c
Expand Up @@ -386,15 +386,15 @@ 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;
}

pcc_pdev = platform_create_bundle(&pcc_mbox_driver,
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;
}

Expand Down

0 comments on commit 3fcc54d

Please sign in to comment.