Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Rafael J. Wysocki
94fd4423 d33bd88a

+1 -1
+1 -1
drivers/acpi/processor_throttling.c
··· 235 235 if (pr->throttling_platform_limit > target_state) 236 236 target_state = pr->throttling_platform_limit; 237 237 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"); 239 239 target_state = p_throttling->state_count - 1; 240 240 } 241 241 p_tstate->target_state = target_state;