Commit 7a6ff010 authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Greg Kroah-Hartman

staging:iio:imu:adis16400: use strtobool for reset sysfs and don't assign unused tx members.

Signed-off-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Acked-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent deda386d
...@@ -150,8 +150,6 @@ static int adis16400_spi_read_reg_16(struct iio_dev *indio_dev, ...@@ -150,8 +150,6 @@ static int adis16400_spi_read_reg_16(struct iio_dev *indio_dev,
mutex_lock(&st->buf_lock); mutex_lock(&st->buf_lock);
st->tx[0] = ADIS16400_READ_REG(lower_reg_address); st->tx[0] = ADIS16400_READ_REG(lower_reg_address);
st->tx[1] = 0; st->tx[1] = 0;
st->tx[2] = 0;
st->tx[3] = 0;
spi_message_init(&msg); spi_message_init(&msg);
spi_message_add_tail(&xfers[0], &msg); spi_message_add_tail(&xfers[0], &msg);
...@@ -240,17 +238,18 @@ static ssize_t adis16400_write_reset(struct device *dev, ...@@ -240,17 +238,18 @@ static ssize_t adis16400_write_reset(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr,
const char *buf, size_t len) const char *buf, size_t len)
{ {
struct iio_dev *indio_dev = dev_get_drvdata(dev); bool val;
int ret;
if (len < 1) ret = strtobool(buf, &val);
return -1; if (ret < 0)
switch (buf[0]) { return ret;
case '1': if (val)
case 'y': ret = adis16400_reset(dev_get_drvdata(dev));
case 'Y': if (ret < 0)
return adis16400_reset(indio_dev); return ret;
}
return -1; return len;
} }
int adis16400_set_irq(struct iio_dev *indio_dev, bool enable) int adis16400_set_irq(struct iio_dev *indio_dev, bool enable)
......
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