Commit 252b1d84 authored by Ioana Ciornei's avatar Ioana Ciornei Committed by Greg Kroah-Hartman
Browse files

staging: iio: accel: properly align function arguments



This patch properly aligns the function arguments or
its parameters in order to match the open bracket.

Signed-off-by: default avatarIoana Ciornei <ciorneiioana@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1abe0c9a
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -476,7 +476,8 @@ static int sca3000_read_raw(struct iio_dev *indio_dev,
		} else {
			/* get the temperature when available */
			ret = sca3000_read_data_short(st,
				SCA3000_REG_ADDR_TEMP_MSB, 2);
						      SCA3000_REG_ADDR_TEMP_MSB,
						      2);
			if (ret < 0) {
				mutex_unlock(&st->lock);
				return ret;
+3 −3

File changed.

Contains only whitespace changes.