Commit e9423075 authored by Marco Felsch's avatar Marco Felsch Committed by Jonathan Cameron

iio: temperature: tmp117: cosmetic alignment cleanup

Align the code correctly if possible and align the channel bit mask to
make it easier to read.
Signed-off-by: default avatarMarco Felsch <m.felsch@pengutronix.de>
Link: https://lore.kernel.org/r/20230228090518.529811-6-m.felsch@pengutronix.deSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 0cd2889d
...@@ -82,9 +82,8 @@ static int tmp117_read_raw(struct iio_dev *indio_dev, ...@@ -82,9 +82,8 @@ static int tmp117_read_raw(struct iio_dev *indio_dev,
} }
} }
static int tmp117_write_raw(struct iio_dev *indio_dev, static int tmp117_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec
struct iio_chan_spec const *channel, int val, const *channel, int val, int val2, long mask)
int val2, long mask)
{ {
struct tmp117_data *data = iio_priv(indio_dev); struct tmp117_data *data = iio_priv(indio_dev);
s16 off; s16 off;
...@@ -107,7 +106,8 @@ static const struct iio_chan_spec tmp117_channels[] = { ...@@ -107,7 +106,8 @@ static const struct iio_chan_spec tmp117_channels[] = {
{ {
.type = IIO_TEMP, .type = IIO_TEMP,
.info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
BIT(IIO_CHAN_INFO_CALIBBIAS) | BIT(IIO_CHAN_INFO_SCALE), BIT(IIO_CHAN_INFO_CALIBBIAS) |
BIT(IIO_CHAN_INFO_SCALE),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment