Currently the valid paramter is char type but the type is not required.
So change the parameter to boot type correctly.

Signed-off-by: Tokunori Ikegami <[email protected]>
Cc: Guenter Roeck <[email protected]>
Cc: Chris Packham <[email protected]>
Cc: [email protected]
---
 drivers/hwmon/adt7475.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c
index 270cabb49677..5f03a93632c3 100644
--- a/drivers/hwmon/adt7475.c
+++ b/drivers/hwmon/adt7475.c
@@ -195,7 +195,7 @@ struct adt7475_data {
 
        unsigned long measure_updated;
        unsigned long limits_updated;
-       char valid;
+       bool valid;
 
        u8 config4;
        u8 config5;
@@ -1780,6 +1780,7 @@ static struct adt7475_data *adt7475_update_device(struct 
device *dev)
            !data->valid) {
                adt7475_update_measure(dev);
                data->measure_updated = jiffies;
+               data->valid = true;
        }
 
        /* Limits and settings, should never change update every 60 seconds */
@@ -1787,7 +1788,7 @@ static struct adt7475_data *adt7475_update_device(struct 
device *dev)
            !data->valid) {
                adt7475_update_limits(dev);
                data->limits_updated = jiffies;
-               data->valid = 1;
+               data->valid = true;
        }
        mutex_unlock(&data->lock);
 
-- 
2.16.1

--
To unsubscribe from this list: send the line "unsubscribe linux-hwmon" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to