aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/acpi_pad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpi_pad.c b/drivers/acpi/acpi_pad.c
index a43fa1a57d57..1c09e1b532b0 100644
--- a/drivers/acpi/acpi_pad.c
+++ b/drivers/acpi/acpi_pad.c
@@ -234,7 +234,7 @@ static int create_power_saving_task(void)
234 234
235 ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread, 235 ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread,
236 (void *)(unsigned long)ps_tsk_num, 236 (void *)(unsigned long)ps_tsk_num,
237 "power_saving/%d", ps_tsk_num); 237 "acpi_pad/%d", ps_tsk_num);
238 rc = IS_ERR(ps_tsks[ps_tsk_num]) ? PTR_ERR(ps_tsks[ps_tsk_num]) : 0; 238 rc = IS_ERR(ps_tsks[ps_tsk_num]) ? PTR_ERR(ps_tsks[ps_tsk_num]) : 0;
239 if (!rc) 239 if (!rc)
240 ps_tsk_num++; 240 ps_tsk_num++;