staging:iio:dac:ad5686: Check for negative values
authorLars-Peter Clausen <lars@metafoo.de>
Wed, 19 Oct 2011 15:51:28 +0000 (17:51 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 19 Oct 2011 20:57:05 +0000 (13:57 -0700)
Currently it is possible to write negative values to the ad5686's raw attribute.
This will cause undefined behaviour, so reject negative values.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/iio/dac/ad5686.c

index 1d50dd17621569434af62906ab3f49b94d00e2b7..48389e1c19f11fe058a8ecc170b4125c273aae59 100644 (file)
@@ -327,7 +327,7 @@ static int ad5686_write_raw(struct iio_dev *indio_dev,
 
        switch (mask) {
        case 0:
-               if (val > (1 << chan->scan_type.realbits))
+               if (val > (1 << chan->scan_type.realbits) || val < 0)
                        return -EINVAL;
 
                mutex_lock(&indio_dev->mlock);