On 03/01/2013 01:07 PM, Lars-Peter Clausen wrote: > The DAC value range check allows values one larger than the maximum value, which > effectively results in setting the DAC value to 0. This patch fixes the issue. > > Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx> applied to fixes-togreg branch of iio.git > --- > drivers/iio/dac/ad5064.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/dac/ad5064.c b/drivers/iio/dac/ad5064.c > index e19b73f..a491976 100644 > --- a/drivers/iio/dac/ad5064.c > +++ b/drivers/iio/dac/ad5064.c > @@ -257,7 +257,7 @@ static int ad5064_write_raw(struct iio_dev *indio_dev, > > switch (mask) { > case IIO_CHAN_INFO_RAW: > - if (val > (1 << chan->scan_type.realbits) || val < 0) > + if (val >= (1 << chan->scan_type.realbits) || val < 0) > return -EINVAL; > > mutex_lock(&indio_dev->mlock); > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html