Skip to content

Commit 94fd442

Browse files
ColinIanKingrafaeljw
authored andcommitted
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>
1 parent d33bd88 commit 94fd442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/acpi/processor_throttling.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ static int acpi_processor_throttling_notifier(unsigned long event, void *data)
235235
if (pr->throttling_platform_limit > target_state)
236236
target_state = pr->throttling_platform_limit;
237237
if (target_state >= p_throttling->state_count) {
238-
pr_warn("Exceed the limit of T-state \n");
238+
pr_warn("Exceed the limit of T-state\n");
239239
target_state = p_throttling->state_count - 1;
240240
}
241241
p_tstate->target_state = target_state;

0 commit comments

Comments
 (0)