diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-01-31 09:27:00 -0500 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-02-02 04:22:14 -0500 |
commit | 1439b6e8d1a1b158c11ecf398dd9bf3fcceb4861 (patch) | |
tree | 1d7e32975899199902ef94c1d7f561639196e204 | |
parent | ceac0cf209842e49c277ac301d4ce69b4db8239b (diff) |
staging:iio:adxrs450: Reflow overlong lines
Reflow two lines to meet the 80 characters per line limit.
Fixes the following checkpatch warnings:
WARNING: line over 80 characters
#29: FILE: staging/iio/gyro/adxrs450_core.c:29:
+ * @reg_address: the address of the lower of the two registers,which should be an even address,
WARNING: line over 80 characters
#81: FILE: staging/iio/gyro/adxrs450_core.c:81:
+ * @reg_address: the address of the lower of the two registers,which should be an even address,
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/staging/iio/gyro/adxrs450_core.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/iio/gyro/adxrs450_core.c b/drivers/staging/iio/gyro/adxrs450_core.c index 24b7a0f6f1fd..dd0b7447d098 100644 --- a/drivers/staging/iio/gyro/adxrs450_core.c +++ b/drivers/staging/iio/gyro/adxrs450_core.c | |||
@@ -26,8 +26,8 @@ | |||
26 | /** | 26 | /** |
27 | * adxrs450_spi_read_reg_16() - read 2 bytes from a register pair | 27 | * adxrs450_spi_read_reg_16() - read 2 bytes from a register pair |
28 | * @dev: device associated with child of actual iio_dev | 28 | * @dev: device associated with child of actual iio_dev |
29 | * @reg_address: the address of the lower of the two registers,which should be an even address, | 29 | * @reg_address: the address of the lower of the two registers, which should be |
30 | * Second register's address is reg_address + 1. | 30 | * an even address, the second register's address is reg_address + 1. |
31 | * @val: somewhere to pass back the value read | 31 | * @val: somewhere to pass back the value read |
32 | **/ | 32 | **/ |
33 | static int adxrs450_spi_read_reg_16(struct iio_dev *indio_dev, | 33 | static int adxrs450_spi_read_reg_16(struct iio_dev *indio_dev, |
@@ -78,8 +78,8 @@ error_ret: | |||
78 | /** | 78 | /** |
79 | * adxrs450_spi_write_reg_16() - write 2 bytes data to a register pair | 79 | * adxrs450_spi_write_reg_16() - write 2 bytes data to a register pair |
80 | * @dev: device associated with child of actual actual iio_dev | 80 | * @dev: device associated with child of actual actual iio_dev |
81 | * @reg_address: the address of the lower of the two registers,which should be an even address, | 81 | * @reg_address: the address of the lower of the two registers,which should be |
82 | * Second register's address is reg_address + 1. | 82 | * an even address, the second register's address is reg_address + 1. |
83 | * @val: value to be written. | 83 | * @val: value to be written. |
84 | **/ | 84 | **/ |
85 | static int adxrs450_spi_write_reg_16(struct iio_dev *indio_dev, | 85 | static int adxrs450_spi_write_reg_16(struct iio_dev *indio_dev, |