diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2010-02-02 14:37:58 -0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-02-16 03:10:10 -0500 |
commit | f04d5e012d73ea441bd39804ace39fd6d1ce5611 (patch) | |
tree | 930246e55aba4181ced4a8e38fbdd133a4dbb589 | |
parent | 724e6d3fe8003c3f60bf404bf22e4e331327c596 (diff) | |
download | op-kernel-dev-f04d5e012d73ea441bd39804ace39fd6d1ce5611.zip op-kernel-dev-f04d5e012d73ea441bd39804ace39fd6d1ce5611.tar.gz |
thinkpad-acpi: wrong thermal attribute_group removed in thermal_exit()
sysfs_remove_group() removed the wrong attribute_group for
thermal_read_mode TPEC_8, ACPI_TMP07 and ACPI_UPDT
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index e67e4fe..eb603f1d5 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -5771,7 +5771,7 @@ static void thermal_exit(void) case TPACPI_THERMAL_ACPI_TMP07: case TPACPI_THERMAL_ACPI_UPDT: sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, - &thermal_temp_input16_group); + &thermal_temp_input8_group); break; case TPACPI_THERMAL_NONE: default: |