Commit c4f0ebd9 authored by Shraddha Barke's avatar Shraddha Barke Committed by Jonathan Cameron

Staging: iio: cdc: ad7150: Fix alignment should match open parenthesis

Fix the checkpatch warning of alignment should match open
parenthesis.
Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent c0559ae2
...@@ -160,8 +160,9 @@ static int ad7150_read_event_config(struct iio_dev *indio_dev, ...@@ -160,8 +160,9 @@ static int ad7150_read_event_config(struct iio_dev *indio_dev,
/* lock should be held */ /* lock should be held */
static int ad7150_write_event_params(struct iio_dev *indio_dev, static int ad7150_write_event_params(struct iio_dev *indio_dev,
unsigned int chan, enum iio_event_type type, unsigned int chan,
enum iio_event_direction dir) enum iio_event_type type,
enum iio_event_direction dir)
{ {
int ret; int ret;
u16 value; u16 value;
...@@ -209,8 +210,9 @@ static int ad7150_write_event_params(struct iio_dev *indio_dev, ...@@ -209,8 +210,9 @@ static int ad7150_write_event_params(struct iio_dev *indio_dev,
} }
static int ad7150_write_event_config(struct iio_dev *indio_dev, static int ad7150_write_event_config(struct iio_dev *indio_dev,
const struct iio_chan_spec *chan, enum iio_event_type type, const struct iio_chan_spec *chan,
enum iio_event_direction dir, int state) enum iio_event_type type,
enum iio_event_direction dir, int state)
{ {
u8 thresh_type, cfg, adaptive; u8 thresh_type, cfg, adaptive;
int ret; int ret;
...@@ -302,11 +304,11 @@ static int ad7150_read_event_value(struct iio_dev *indio_dev, ...@@ -302,11 +304,11 @@ static int ad7150_read_event_value(struct iio_dev *indio_dev,
} }
static int ad7150_write_event_value(struct iio_dev *indio_dev, static int ad7150_write_event_value(struct iio_dev *indio_dev,
const struct iio_chan_spec *chan, const struct iio_chan_spec *chan,
enum iio_event_type type, enum iio_event_type type,
enum iio_event_direction dir, enum iio_event_direction dir,
enum iio_event_info info, enum iio_event_info info,
int val, int val2) int val, int val2)
{ {
int ret; int ret;
struct ad7150_chip_info *chip = iio_priv(indio_dev); struct ad7150_chip_info *chip = iio_priv(indio_dev);
...@@ -365,9 +367,9 @@ static ssize_t ad7150_show_timeout(struct device *dev, ...@@ -365,9 +367,9 @@ static ssize_t ad7150_show_timeout(struct device *dev,
} }
static ssize_t ad7150_store_timeout(struct device *dev, static ssize_t ad7150_store_timeout(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr,
const char *buf, const char *buf,
size_t len) size_t len)
{ {
struct iio_dev *indio_dev = dev_to_iio_dev(dev); struct iio_dev *indio_dev = dev_to_iio_dev(dev);
struct ad7150_chip_info *chip = iio_priv(indio_dev); struct ad7150_chip_info *chip = iio_priv(indio_dev);
...@@ -580,7 +582,7 @@ static const struct iio_info ad7150_info = { ...@@ -580,7 +582,7 @@ static const struct iio_info ad7150_info = {
*/ */
static int ad7150_probe(struct i2c_client *client, static int ad7150_probe(struct i2c_client *client,
const struct i2c_device_id *id) const struct i2c_device_id *id)
{ {
int ret; int ret;
struct ad7150_chip_info *chip; struct ad7150_chip_info *chip;
......
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