Commit a94abc74 authored by William Breathitt Gray's avatar William Breathitt Gray Committed by Jonathan Cameron
Browse files

iio: addac: stx104: Improve indentation in stx104_write_raw()



By bailing out early if chan->output is false for the IIO_CHAN_INFO_RAW,
indentation can be decreased by a tab and code readability improved.

Suggested-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarWilliam Breathitt Gray <william.gray@linaro.org>
Link: https://lore.kernel.org/r/487d17da9e2612f3e6b2bd1c3def2fa1b955db9b.1680790580.git.william.gray@linaro.org


Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 46a4cac7
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -181,7 +181,9 @@ static int stx104_write_raw(struct iio_dev *indio_dev,

		return 0;
	case IIO_CHAN_INFO_RAW:
		if (chan->output) {
		if (!chan->output)
			return -EINVAL;

		if (val < 0 || val > U16_MAX)
			return -EINVAL;

@@ -193,8 +195,6 @@ static int stx104_write_raw(struct iio_dev *indio_dev,
		mutex_unlock(&priv->lock);
		return 0;
	}
		return -EINVAL;
	}

	return -EINVAL;
}