Commit 92e4b1bc authored by Scot Doyle's avatar Scot Doyle Committed by Rafael J. Wysocki

ACPI / EC: Remove non-standard log emphasis

Remove unusual pr_info() visual emphasis introduced in ad479e7f
"ACPI / EC: Introduce STARTED/STOPPED flags to replace BLOCKED flag".
Signed-off-by: default avatarScot Doyle <lkml14@scotdoyle.com>
[ rjw: Change pr_info() to pr_debug() too in those places. ]
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 37d11391
......@@ -680,7 +680,7 @@ static void acpi_ec_start(struct acpi_ec *ec, bool resuming)
/* Enable GPE for event processing (SCI_EVT=1) */
if (!resuming)
acpi_ec_submit_request(ec);
pr_info("+++++ EC started +++++\n");
pr_debug("EC started\n");
}
spin_unlock_irqrestore(&ec->lock, flags);
}
......@@ -712,7 +712,7 @@ static void acpi_ec_stop(struct acpi_ec *ec, bool suspending)
acpi_ec_complete_request(ec);
clear_bit(EC_FLAGS_STARTED, &ec->flags);
clear_bit(EC_FLAGS_STOPPED, &ec->flags);
pr_info("+++++ EC stopped +++++\n");
pr_debug("EC stopped\n");
}
spin_unlock_irqrestore(&ec->lock, flags);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment