diff options
| author | Ioana Ciornei <[email protected]> | 2015-10-14 21:14:16 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2015-10-16 22:47:28 -0700 |
| commit | 5feb8c51dba6813bcfbdeb688cd5fd6bcde2c5da (patch) | |
| tree | 6bf8389aa40e0af11572e70706662a6e887b79c3 | |
| parent | c30685c67cc21490fc6842cbbc68404be90f6859 (diff) | |
staging: iio: adc: add spaces around binary operators
Add spaces around binary operators like -, +, * etc
in order to improve readability
Signed-off-by: Ioana Ciornei <[email protected]>
Reviewed-by: Daniel Baluta <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/iio/adc/ad7816.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/iio/adc/ad7816.c b/drivers/staging/iio/adc/ad7816.c index 4e954d25bd6e..663608762b6b 100644 --- a/drivers/staging/iio/adc/ad7816.c +++ b/drivers/staging/iio/adc/ad7816.c @@ -48,7 +48,7 @@ struct ad7816_chip_info { u16 rdwr_pin; u16 convert_pin; u16 busy_pin; - u8 oti_data[AD7816_CS_MAX+1]; + u8 oti_data[AD7816_CS_MAX + 1]; u8 channel_id; /* 0 always be temperature */ u8 mode; }; |