]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ACPI: processor: throttling: Remove space before newline
authorColin Ian King <colin.i.king@gmail.com>
Mon, 21 Jul 2025 13:50:16 +0000 (14:50 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 21 Jul 2025 14:45:40 +0000 (16:45 +0200)
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>
drivers/acpi/processor_throttling.c

index d1541a386fbc8556ac3f65a947e53c3866c2a747..f9c2bc1d4a3ac42bc8d30189ebd5139c97e4e95e 100644 (file)
@@ -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;