linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 4/4] ACPI: Convert int to bool and propagete to struct field
@ 2015-01-22  8:52 Quentin Lambert
  0 siblings, 0 replies; only message in thread
From: Quentin Lambert @ 2015-01-22  8:52 UTC (permalink / raw)
  To: Zhang Rui, Robert Moore, Lv Zheng, Rafael J. Wysocki, Len Brown,
	Shaohua Li
  Cc: linux-acpi, devel, linux-kernel

Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
---
 drivers/acpi/thermal.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c
index d24fa19..bc72f1d 100644
--- a/drivers/acpi/thermal.c
+++ b/drivers/acpi/thermal.c
@@ -189,7 +189,7 @@ struct acpi_thermal {
 	struct acpi_thermal_trips trips;
 	struct acpi_handle_list devices;
 	struct thermal_zone_device *thermal_zone;
-	int tz_enabled;
+	bool tz_enabled;
 	int kelvin_offset;
 	struct work_struct thermal_check_work;
 };
@@ -565,7 +565,7 @@ static int thermal_set_mode(struct thermal_zone_device *thermal,
 				enum thermal_device_mode mode)
 {
 	struct acpi_thermal *tz = thermal->devdata;
-	int enable;
+	bool enable;
 
 	if (!tz)
 		return -EINVAL;
@@ -574,9 +574,9 @@ static int thermal_set_mode(struct thermal_zone_device *thermal,
 	 * enable/disable thermal management from ACPI thermal driver
 	 */
 	if (mode == THERMAL_DEVICE_ENABLED)
-		enable = 1;
+		enable = true;
 	else if (mode == THERMAL_DEVICE_DISABLED) {
-		enable = 0;
+		enable = false;
 		pr_warn("thermal zone will be disabled\n");
 	} else
 		return -EINVAL;
@@ -930,7 +930,7 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
 	if (ACPI_FAILURE(status))
 		return -ENODEV;
 
-	tz->tz_enabled = 1;
+	tz->tz_enabled = true;
 
 	dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
 		 tz->thermal_zone->id);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-01-22  8:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-22  8:52 [PATCH 4/4] ACPI: Convert int to bool and propagete to struct field Quentin Lambert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).