Commit 31245077 authored by Haneen Mohammed's avatar Haneen Mohammed Committed by Greg Kroah-Hartman

Staging: iio: remove multible blank lines

This patch removes extra blank lines to address checkpatch.pl warnings
regarding that.
Signed-off-by: default avatarHaneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9963bce7
...@@ -178,7 +178,6 @@ static const struct adis_data adis16209_data = { ...@@ -178,7 +178,6 @@ static const struct adis_data adis16209_data = {
BIT(ADIS16209_DIAG_STAT_POWER_LOW_BIT), BIT(ADIS16209_DIAG_STAT_POWER_LOW_BIT),
}; };
static int adis16209_probe(struct spi_device *spi) static int adis16209_probe(struct spi_device *spi)
{ {
int ret; int ret;
......
...@@ -138,7 +138,6 @@ static ssize_t adis16220_capture_buffer_read(struct iio_dev *indio_dev, ...@@ -138,7 +138,6 @@ static ssize_t adis16220_capture_buffer_read(struct iio_dev *indio_dev,
/* read count/2 values from capture buffer */ /* read count/2 values from capture buffer */
mutex_lock(&st->buf_lock); mutex_lock(&st->buf_lock);
for (i = 0; i < count; i += 2) { for (i = 0; i < count; i += 2) {
st->tx[i] = ADIS_READ_REG(addr); st->tx[i] = ADIS_READ_REG(addr);
st->tx[i + 1] = 0; st->tx[i + 1] = 0;
...@@ -147,7 +146,6 @@ static ssize_t adis16220_capture_buffer_read(struct iio_dev *indio_dev, ...@@ -147,7 +146,6 @@ static ssize_t adis16220_capture_buffer_read(struct iio_dev *indio_dev,
ret = spi_sync_transfer(st->adis.spi, xfers, ARRAY_SIZE(xfers)); ret = spi_sync_transfer(st->adis.spi, xfers, ARRAY_SIZE(xfers));
if (ret) { if (ret) {
mutex_unlock(&st->buf_lock); mutex_unlock(&st->buf_lock);
return -EIO; return -EIO;
} }
...@@ -213,7 +211,6 @@ static ssize_t adis16220_adc2_bin_read(struct file *filp, struct kobject *kobj, ...@@ -213,7 +211,6 @@ static ssize_t adis16220_adc2_bin_read(struct file *filp, struct kobject *kobj,
ADIS16220_CAPT_BUF2); ADIS16220_CAPT_BUF2);
} }
static struct bin_attribute adc2_bin = { static struct bin_attribute adc2_bin = {
.attr = { .attr = {
.name = "in1_bin", .name = "in1_bin",
......
...@@ -558,13 +558,11 @@ static const struct iio_chan_spec lis3l02dq_channels[] = { ...@@ -558,13 +558,11 @@ static const struct iio_chan_spec lis3l02dq_channels[] = {
IIO_CHAN_SOFT_TIMESTAMP(3) IIO_CHAN_SOFT_TIMESTAMP(3)
}; };
static int lis3l02dq_read_event_config(struct iio_dev *indio_dev, static int lis3l02dq_read_event_config(struct iio_dev *indio_dev,
const struct iio_chan_spec *chan, const struct iio_chan_spec *chan,
enum iio_event_type type, enum iio_event_type type,
enum iio_event_direction dir) enum iio_event_direction dir)
{ {
u8 val; u8 val;
int ret; int ret;
u8 mask = (1 << (chan->channel2*2 + (dir == IIO_EV_DIR_RISING))); u8 mask = (1 << (chan->channel2*2 + (dir == IIO_EV_DIR_RISING)));
......
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