Commit 19a00a9d authored by Brian Masney's avatar Brian Masney Committed by Jonathan Cameron

staging: iio: isl29018: fix multiline comment syntax

Change multiline comments from:

/* line1
 * line2
 * ...
 */

to

/*
 * line1
 * line2
 * ...
 */
Signed-off-by: default avatarBrian Masney <masneyb@onstation.org>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 8281101c
...@@ -564,7 +564,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip) ...@@ -564,7 +564,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip)
return status; 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 * When VDD sinks to approximately 1.8V or below, some of
* the part's registers may change their state. When VDD * the part's registers may change their state. When VDD
* recovers to 2.25V (or greater), the part may thus be in an * 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) ...@@ -591,7 +592,8 @@ static int isl29018_chip_init(struct isl29018_chip *chip)
return status; return status;
} }
/* See Intersil AN1534 comments above. /*
* See Intersil AN1534 comments above.
* "Operating Mode" (COMMAND1) register is reprogrammed when * "Operating Mode" (COMMAND1) register is reprogrammed when
* data is read from the device. * data is read from the device.
*/ */
...@@ -773,7 +775,8 @@ static int isl29018_suspend(struct device *dev) ...@@ -773,7 +775,8 @@ static int isl29018_suspend(struct device *dev)
mutex_lock(&chip->lock); 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. * auto shutdown (ie, power-down) mode.
* So we do not have much to do here. * So we do not have much to do here.
*/ */
......
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