aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/max6650.c
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2019-06-07 10:23:19 -0700
committerGuenter Roeck <linux@roeck-us.net>2019-06-23 18:33:01 -0700
commitbf8c9edaa5c61999ed06c001d87c9a0c86cd0bf8 (patch)
tree74759ce24e38598dd4bd8838ef4410b61311df3a /drivers/hwmon/max6650.c
parenthwmon: (max6650) Improve error handling in max6650_init_client (diff)
downloadlinux-dev-bf8c9edaa5c61999ed06c001d87c9a0c86cd0bf8.tar.xz
linux-dev-bf8c9edaa5c61999ed06c001d87c9a0c86cd0bf8.zip
hwmon: (max6650) Declare valid as boolean
Declare valid as boolean to match its use case. Cc: Jean-Francois Dagenais <jeff.dagenais@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/max6650.c')
-rw-r--r--drivers/hwmon/max6650.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/max6650.c b/drivers/hwmon/max6650.c
index caede4d3e21a..90565318aafb 100644
--- a/drivers/hwmon/max6650.c
+++ b/drivers/hwmon/max6650.c
@@ -104,7 +104,7 @@ struct max6650_data {
const struct attribute_group *groups[3];
struct mutex update_lock;
int nr_fans;
- char valid; /* zero until following fields are valid */
+ bool valid; /* false until following fields are valid */
unsigned long last_updated; /* in jiffies */
/* register values */
@@ -183,7 +183,7 @@ static struct max6650_data *max6650_update_device(struct device *dev)
MAX6650_REG_ALARM);
data->last_updated = jiffies;
- data->valid = 1;
+ data->valid = true;
}
mutex_unlock(&data->update_lock);