diff options
author | Len Brown <len.brown@intel.com> | 2012-06-13 22:07:20 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-06-13 22:07:20 -0400 |
commit | 150ed86fade791d82319b27e84a7a6d2de84d1fa (patch) | |
tree | cac92803631c8869680937ca79b26f2d9b1fb2d0 /drivers/acpi/acpi_pad.c | |
parent | 442f24ace6c5991df2a9ab49fe0273b79b145d19 (diff) |
ACPI: acpi_pad: rename "power_saving" thread to "acpi_pad" thread
"acpi_pad/%d" is a better thread name than
generic "power_saving/%d" because users who see
these threads will know the name of the driver
that caused them.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpi_pad.c')
-rw-r--r-- | drivers/acpi/acpi_pad.c | 2 |
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++; |