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: Ioana Ciornei <ciorneiioana@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Ioana Ciornei 2015-10-29 01:01:49 +02:00 committed by Greg Kroah-Hartman
parent 1abe0c9a72
commit 252b1d8466
2 changed files with 12 additions and 11 deletions

View File

@ -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;