OSDN Git Service

iio: core: added support for IIO_VAL_INT
authorSean Nyekjaer <sean.nyekjaer@prevas.dk>
Mon, 9 Nov 2015 12:55:34 +0000 (13:55 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sun, 15 Nov 2015 10:53:34 +0000 (10:53 +0000)
Added core support for IIO_VAL_INT in write_raw_get_fmt function.

Signed-off-by: Sean Nyekjaer <sean.nyekjaer@prevas.dk>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/industrialio-core.c

index 208358f..d0a84fe 100644 (file)
@@ -512,6 +512,12 @@ int iio_str_to_fixpoint(const char *str, int fract_mult,
        int i = 0, f = 0;
        bool integer_part = true, negative = false;
 
+       if (fract_mult == 0) {
+               *fract = 0;
+
+               return kstrtoint(str, 0, integer);
+       }
+
        if (str[0] == '-') {
                negative = true;
                str++;
@@ -571,6 +577,9 @@ static ssize_t iio_write_channel_info(struct device *dev,
        if (indio_dev->info->write_raw_get_fmt)
                switch (indio_dev->info->write_raw_get_fmt(indio_dev,
                        this_attr->c, this_attr->address)) {
+               case IIO_VAL_INT:
+                       fract_mult = 0;
+                       break;
                case IIO_VAL_INT_PLUS_MICRO:
                        fract_mult = 100000;
                        break;