mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 10:01:39 -05:00
ACPI: processor: throttling: Remove space before newline
There is a extraneous space before a newline in a pr_warn message. Remove it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://patch.msgid.link/20250721135016.2500117-1-colin.i.king@gmail.com [ rjw: Changelog edits ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
d33bd88ac0
commit
94fd442303
@@ -235,7 +235,7 @@ static int acpi_processor_throttling_notifier(unsigned long event, void *data)
|
||||
if (pr->throttling_platform_limit > target_state)
|
||||
target_state = pr->throttling_platform_limit;
|
||||
if (target_state >= p_throttling->state_count) {
|
||||
pr_warn("Exceed the limit of T-state \n");
|
||||
pr_warn("Exceed the limit of T-state\n");
|
||||
target_state = p_throttling->state_count - 1;
|
||||
}
|
||||
p_tstate->target_state = target_state;
|
||||
|
||||
Reference in New Issue
Block a user