summaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio/light/isl29018.c
diff options
context:
space:
mode:
authorBrian Masney2016-10-10 09:19:55 +0200
committerJonathan Cameron2016-10-23 20:33:40 +0200
commit744ef62c2ee6ab71cdae944368983dc59b77dc32 (patch)
tree0a59af51efb452df4259564b8fb604b246cdfdd6 /drivers/staging/iio/light/isl29018.c
parentstaging:iio:TODO drop outdated entries in this todo. (diff)
downloadkernel-qcow2-linux-744ef62c2ee6ab71cdae944368983dc59b77dc32.tar.gz
kernel-qcow2-linux-744ef62c2ee6ab71cdae944368983dc59b77dc32.tar.xz
kernel-qcow2-linux-744ef62c2ee6ab71cdae944368983dc59b77dc32.zip
staging: iio: isl29018: add newlines to improve readability
Add newlines to improve code readability in preparation for moving the driver out of staging. Signed-off-by: Brian Masney <masneyb@onstation.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/staging/iio/light/isl29018.c')
-rw-r--r--drivers/staging/iio/light/isl29018.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/staging/iio/light/isl29018.c b/drivers/staging/iio/light/isl29018.c
index 52bfb1cbe8e0..26bbbb87f743 100644
--- a/drivers/staging/iio/light/isl29018.c
+++ b/drivers/staging/iio/light/isl29018.c
@@ -399,6 +399,7 @@ static int isl29018_write_raw(struct iio_dev *indio_dev,
write_done:
mutex_unlock(&chip->lock);
+
return ret;
}
@@ -464,6 +465,7 @@ static int isl29018_read_raw(struct iio_dev *indio_dev,
read_done:
mutex_unlock(&chip->lock);
+
return ret;
}
@@ -726,6 +728,7 @@ static int isl29018_probe(struct i2c_client *client,
indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*chip));
if (!indio_dev)
return -ENOMEM;
+
chip = iio_priv(indio_dev);
i2c_set_clientdata(client, indio_dev);
@@ -765,6 +768,7 @@ static int isl29018_probe(struct i2c_client *client,
indio_dev->name = name;
indio_dev->dev.parent = &client->dev;
indio_dev->modes = INDIO_DIRECT_MODE;
+
return devm_iio_device_register(&client->dev, indio_dev);
}
@@ -782,6 +786,7 @@ static int isl29018_suspend(struct device *dev)
chip->suspended = true;
mutex_unlock(&chip->lock);
+
return 0;
}
@@ -797,6 +802,7 @@ static int isl29018_resume(struct device *dev)
chip->suspended = false;
mutex_unlock(&chip->lock);
+
return err;
}