iio: adc: max9611: explicitly cast gain_selectors
authorStefan Agner <stefan@agner.ch>
Sat, 11 Aug 2018 09:12:19 +0000 (11:12 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 19 Aug 2018 16:48:04 +0000 (17:48 +0100)
After finding a reasonable gain, the function converts the configured
gain to a gain configuration option selector enum max9611_csa_gain.
Make the conversion clearly visible by using an explicit cast. This
also avoids a warning seen with clang:
  drivers/iio/adc/max9611.c:292:16: warning: implicit conversion from
      enumeration type 'enum max9611_conf_ids' to different enumeration
      type 'enum max9611_csa_gain' [-Wenum-conversion]
                        *csa_gain = gain_selectors[i];
                                  ~ ^~~~~~~~~~~~~~~~~

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/max9611.c

index 0538ff8..643a4e6 100644 (file)
@@ -289,7 +289,7 @@ static int max9611_read_csa_voltage(struct max9611_dev *max9611,
                        return ret;
 
                if (*adc_raw > 0) {
-                       *csa_gain = gain_selectors[i];
+                       *csa_gain = (enum max9611_csa_gain)gain_selectors[i];
                        return 0;
                }
        }