summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Masney <masneyb@onstation.org>2016-10-10 03:19:57 -0400
committerJonathan Cameron <jic23@kernel.org>2016-10-23 19:33:41 +0100
commit19a00a9d4c9027b4ce93b7c500da53dcb36ba1b0 (patch)
tree019e832e665a356844c1218119ef7c04768dda04
parent8281101c2d69dd784baf8bdd0895b40ff041b756 (diff)
downloadlinux-19a00a9d4c9027b4ce93b7c500da53dcb36ba1b0.tar.gz
linux-19a00a9d4c9027b4ce93b7c500da53dcb36ba1b0.tar.bz2
linux-19a00a9d4c9027b4ce93b7c500da53dcb36ba1b0.zip
staging: iio: isl29018: fix multiline comment syntax
Change multiline comments from: /* line1 * line2 * ... */ to /* * line1 * line2 * ... */ Signed-off-by: Brian Masney <masneyb@onstation.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r--drivers/staging/iio/light/isl29018.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/staging/iio/light/isl29018.c b/drivers/staging/iio/light/isl29018.c
index 130f2225a6fc..132de8e93bf8 100644
--- a/drivers/staging/iio/light/isl29018.c
+++ b/drivers/staging/iio/light/isl29018.c
@@ -564,7 +564,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip)
return status;
}
- /* Code added per Intersil Application Note 1534:
+ /*
+ * Code added per Intersil Application Note 1534:
* When VDD sinks to approximately 1.8V or below, some of
* the part's registers may change their state. When VDD
* recovers to 2.25V (or greater), the part may thus be in an
@@ -591,7 +592,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip)
return status;
}
- /* See Intersil AN1534 comments above.
+ /*
+ * See Intersil AN1534 comments above.
* "Operating Mode" (COMMAND1) register is reprogrammed when
* data is read from the device.
*/
@@ -773,7 +775,8 @@ static int isl29018_suspend(struct device *dev)
mutex_lock(&chip->lock);
- /* Since this driver uses only polling commands, we are by default in
+ /*
+ * Since this driver uses only polling commands, we are by default in
* auto shutdown (ie, power-down) mode.
* So we do not have much to do here.
*/