mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
staging: iio: accel: place logical operators on the previous line
This patch moves the logical operators on the previous line in order to follow the linux coding style. Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
663b03d8ae
commit
48948abe05
@@ -980,14 +980,14 @@ static int sca3000_write_event_config(struct iio_dev *indio_dev,
|
||||
if (ret)
|
||||
goto exit_point;
|
||||
/* if off and should be on */
|
||||
if ((st->mo_det_use_count)
|
||||
&& ((st->rx[0] & protect_mask) != SCA3000_MEAS_MODE_MOT_DET))
|
||||
if ((st->mo_det_use_count) &&
|
||||
((st->rx[0] & protect_mask) != SCA3000_MEAS_MODE_MOT_DET))
|
||||
ret = sca3000_write_reg(st, SCA3000_REG_ADDR_MODE,
|
||||
(st->rx[0] & ~protect_mask)
|
||||
| SCA3000_MEAS_MODE_MOT_DET);
|
||||
/* if on and should be off */
|
||||
else if (!(st->mo_det_use_count)
|
||||
&& ((st->rx[0] & protect_mask) == SCA3000_MEAS_MODE_MOT_DET))
|
||||
else if (!(st->mo_det_use_count) &&
|
||||
((st->rx[0] & protect_mask) == SCA3000_MEAS_MODE_MOT_DET))
|
||||
ret = sca3000_write_reg(st, SCA3000_REG_ADDR_MODE,
|
||||
(st->rx[0] & ~protect_mask));
|
||||
exit_point:
|
||||
|
||||
Reference in New Issue
Block a user