Skip to content

Commit 84a027b

Browse files
committed
ACPI: processor: throttling: Remove space before newline
JIRA: https://issues.redhat.com/browse/RHEL-114091 commit 94fd442 Author: Colin Ian King <colin.i.king@gmail.com> Date: Mon, 21 Jul 2025 16:45:40 +0000 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> Signed-off-by: Mark Langsdorf <mlangsdo@redhat.com>
1 parent 6419b0b commit 84a027b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/acpi/processor_throttling.c

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

0 commit comments

Comments
 (0)