mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 00:39:30 -04:00
Staging: iio: meter: ade7854-i2c: code style improvements
Code reformatting based on checkpatch.pl with --strict: Lines over 80 characters were fixed Signed-off-by: Tolga Ceylan <tolga.ceylan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
08c95f9abf
commit
7cb8957b89
@@ -195,7 +195,8 @@ static int ade7854_i2c_read_reg_32(struct device *dev,
|
||||
if (ret)
|
||||
goto out;
|
||||
|
||||
*val = (st->rx[0] << 24) | (st->rx[1] << 16) | (st->rx[2] << 8) | st->rx[3];
|
||||
*val = (st->rx[0] << 24) | (st->rx[1] << 16) |
|
||||
(st->rx[2] << 8) | st->rx[3];
|
||||
out:
|
||||
mutex_unlock(&st->buf_lock);
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user