Commit ef4f92c0 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Jonathan Cameron

iio: Accept a leading '+' sign when parsing fixed point numbers

If we encounter a leading '+' sign just skip over it.
Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 02330acd
...@@ -437,6 +437,8 @@ static ssize_t iio_write_channel_info(struct device *dev, ...@@ -437,6 +437,8 @@ static ssize_t iio_write_channel_info(struct device *dev,
if (buf[0] == '-') { if (buf[0] == '-') {
negative = true; negative = true;
buf++; buf++;
} else if (buf[0] == '+') {
buf++;
} }
while (*buf) { while (*buf) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment