ACPI: acpi_pad: rename "power_saving" thread to "acpi_pad" thread
authorLen Brown <len.brown@intel.com>
Thu, 14 Jun 2012 02:07:20 +0000 (22:07 -0400)
committerLen Brown <len.brown@intel.com>
Thu, 14 Jun 2012 02:07:20 +0000 (22:07 -0400)
"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>
drivers/acpi/acpi_pad.c

index a43fa1a57d57f45616c9d70c362df15d3b71c8e5..1c09e1b532b09a40ad6225a7fbf81ee65ab267bf 100644 (file)
@@ -234,7 +234,7 @@ static int create_power_saving_task(void)
 
        ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread,
                (void *)(unsigned long)ps_tsk_num,
-               "power_saving/%d", ps_tsk_num);
+               "acpi_pad/%d", ps_tsk_num);
        rc = IS_ERR(ps_tsks[ps_tsk_num]) ? PTR_ERR(ps_tsks[ps_tsk_num]) : 0;
        if (!rc)
                ps_tsk_num++;