Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71646e2c authored by Michael Hennerich's avatar Michael Hennerich Committed by Greg Kroah-Hartman
Browse files

iio: industrialio-core: introduce IIO_VAL_INT_PLUS_NANO

parent 6263ba55
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -202,6 +202,7 @@ static inline s64 iio_get_time_ns(void)
 * call to iio_device_register. */
#define IIO_VAL_INT 1
#define IIO_VAL_INT_PLUS_MICRO 2
#define IIO_VAL_INT_PLUS_NANO 3

/**
 * struct iio_info - constant information about device
+5 −0
Original line number Diff line number Diff line
@@ -396,6 +396,11 @@ static ssize_t iio_read_channel_info(struct device *dev,
			return sprintf(buf, "-%d.%06u\n", val, -val2);
		else
			return sprintf(buf, "%d.%06u\n", val, val2);
	} else if (ret == IIO_VAL_INT_PLUS_NANO) {
		if (val2 < 0)
			return sprintf(buf, "-%d.%09u\n", val, -val2);
		else
			return sprintf(buf, "%d.%09u\n", val, val2);
	} else
		return 0;
}