public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] ACPI/Thermal: Remove the unused lock of struct acpi_thermal
@ 2013-08-14 13:00 tianyu.lan
  2013-08-14 13:00 ` [PATCH 2/3] ACPI/Thermal: Remove unused macro in the driver/acpi/thermal.c tianyu.lan
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: tianyu.lan @ 2013-08-14 13:00 UTC (permalink / raw)
  To: rjw, lenb; +Cc: Lan Tianyu, linux-acpi, rui.zhang

From: Lan Tianyu <tianyu.lan@intel.com>

The acpi_thermal->lock now just is initialized when thermal zone device
is added and destroyed when thermal zone is removed. Never being used
any other places. So remove it.

Acked-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Lan Tianyu <tianyu.lan@intel.com>
---
 drivers/acpi/thermal.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c
index a3e38a0..850818d 100644
--- a/drivers/acpi/thermal.c
+++ b/drivers/acpi/thermal.c
@@ -190,7 +190,6 @@ struct acpi_thermal {
 	struct thermal_zone_device *thermal_zone;
 	int tz_enabled;
 	int kelvin_offset;
-	struct mutex lock;
 };
 
 /* --------------------------------------------------------------------------
@@ -1088,8 +1087,6 @@ static int acpi_thermal_add(struct acpi_device *device)
 	strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
 	strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
 	device->driver_data = tz;
-	mutex_init(&tz->lock);
-
 
 	result = acpi_thermal_get_info(tz);
 	if (result)
@@ -1122,7 +1119,6 @@ static int acpi_thermal_remove(struct acpi_device *device)
 	tz = acpi_driver_data(device);
 
 	acpi_thermal_unregister_thermal_zone(tz);
-	mutex_destroy(&tz->lock);
 	kfree(tz);
 	return 0;
 }
-- 
1.8.4.rc0.1.g8f6a3e5.dirty


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-08-19 23:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-14 13:00 [PATCH 1/3] ACPI/Thermal: Remove the unused lock of struct acpi_thermal tianyu.lan
2013-08-14 13:00 ` [PATCH 2/3] ACPI/Thermal: Remove unused macro in the driver/acpi/thermal.c tianyu.lan
2013-08-14 13:00 ` [PATCH 3/3] ACPI/Thermal: Use THERMAL_TRIPS_NONE macro to replace number tianyu.lan
2013-08-14 17:05 ` [PATCH 1/3] ACPI/Thermal: Remove the unused lock of struct acpi_thermal R, Durgadoss
2013-08-15  0:28   ` Lan Tianyu
2013-08-19 23:39     ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox