On Wed, 18 Sep 2024 15:42:56 -0400 Steven Davis <goldside000@xxxxxxxxxxx> wrote: > On Wed, 18 Sep 2024 at 23:13:19 +0530, Hridesh MG wrote: > > Reported by checkpatch: > > > > CHECK: Alignment should match open parenthesis > > > > Signed-off-by: Hridesh MG <hridesh699@xxxxxxxxx> > Acked-by: Steven Davis <goldside000@xxxxxxxxxxx> Applied. Thanks, Jonathan > > --- > > drivers/staging/iio/impedance-analyzer/ad5933.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > diff --git a/drivers/staging/iio/impedance-analyzer/ad5933.c b/drivers/staging/iio/impedance-analyzer/ad5933.c > > index 4ae1a7039418..d5544fc2fe98 100644 > > --- a/drivers/staging/iio/impedance-analyzer/ad5933.c > > +++ b/drivers/staging/iio/impedance-analyzer/ad5933.c > > @@ -628,9 +628,9 @@ static void ad5933_work(struct work_struct *work) > > int scan_count = bitmap_weight(indio_dev->active_scan_mask, > > iio_get_masklength(indio_dev)); > > ret = ad5933_i2c_read(st->client, > > - test_bit(1, indio_dev->active_scan_mask) ? > > - AD5933_REG_REAL_DATA : AD5933_REG_IMAG_DATA, > > - scan_count * 2, (u8 *)buf); > > + test_bit(1, indio_dev->active_scan_mask) ? > > + AD5933_REG_REAL_DATA : AD5933_REG_IMAG_DATA, > > + scan_count * 2, (u8 *)buf); > > if (ret) > > return; > > > > -- > > 2.46.0