On 23/06/15 19:45, Tomasz Duszynski wrote:
> IIO_CHAN_INFO_SCALE is useful whenever conversion to standard units is done
> in userspace. In this case conversion is handled by driver so this bit
> is unnecessary.
> 
> Signed-off-by: Tomasz Duszynski <[email protected]>
Applied to the togreg branch of iio.git

Thanks,
> ---
>  drivers/iio/pressure/ms5611_core.c | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/iio/pressure/ms5611_core.c 
> b/drivers/iio/pressure/ms5611_core.c
> index e42c853..1109513 100644
> --- a/drivers/iio/pressure/ms5611_core.c
> +++ b/drivers/iio/pressure/ms5611_core.c
> @@ -163,13 +163,11 @@ static int ms5611_read_raw(struct iio_dev *indio_dev,
>  static const struct iio_chan_spec ms5611_channels[] = {
>       {
>               .type = IIO_PRESSURE,
> -             .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED) |
> -                     BIT(IIO_CHAN_INFO_SCALE)
> +             .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED),
>       },
>       {
>               .type = IIO_TEMP,
> -             .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED) |
> -                     BIT(IIO_CHAN_INFO_SCALE)
> +             .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED),
>       }
>  };
>  
> 

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

Reply via email to