From: Slawomir Stepien Date: Fri, 5 Oct 2018 08:05:15 +0000 (+0200) Subject: staging: iio: cdc: ad7150: fix misaligned lines X-Git-Tag: v5.0-rc1~97^2~249^2~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e00b533527cf4f53a8909b950d2a583c967cd65;p=thirdparty%2Flinux.git staging: iio: cdc: ad7150: fix misaligned lines These lines were misaligned, but the checkpatch.pl didn't indicate them as such. Signed-off-by: Slawomir Stepien Signed-off-by: Jonathan Cameron --- diff --git a/drivers/staging/iio/cdc/ad7150.c b/drivers/staging/iio/cdc/ad7150.c index e2c70063fa0fd..24f74ce60f80b 100644 --- a/drivers/staging/iio/cdc/ad7150.c +++ b/drivers/staging/iio/cdc/ad7150.c @@ -183,8 +183,8 @@ static int ad7150_write_event_params(struct iio_dev *indio_dev, case IIO_EV_TYPE_THRESH: value = chip->threshold[rising][chan]; return i2c_smbus_write_word_data(chip->client, - ad7150_addresses[chan][3], - swab16(value)); + ad7150_addresses[chan][3], + swab16(value)); case IIO_EV_TYPE_MAG_ADAPTIVE: sens = chip->mag_sensitivity[rising][chan]; timeout = chip->mag_timeout[rising][chan];