[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1335809549-30180-1-git-send-email-josephdanielwalter@gmail.com>
Date: Tue, 1 May 2012 00:12:28 +0600
From: joseph daniel <josephdanielwalter@...il.com>
To: Jonathan Cameron <jic23@....ac.uk>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Wolfram Sang <w.sang@...gutronix.de>,
Paul Gortmaker <paul.gortmaker@...driver.com>,
Lars-Peter Clausen <lars@...afoo.de>,
linux-iio@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Cc: joseph daniel <josephdanielwalter@...il.com>
Subject: [PATCH] staging/iio/meter: fix the coding style problem
Signed-off-by: joseph daniel <josephdanielwalter@...il.com>
---
drivers/staging/iio/meter/ade7854-i2c.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/iio/meter/ade7854-i2c.c b/drivers/staging/iio/meter/ade7854-i2c.c
index 1e1faa0..d55cb87 100644
--- a/drivers/staging/iio/meter/ade7854-i2c.c
+++ b/drivers/staging/iio/meter/ade7854-i2c.c
@@ -195,7 +195,10 @@ 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;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists