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:
parent
1abe0c9a72
commit
252b1d8466
2 changed files with 12 additions and 11 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue