aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc
diff options
context:
space:
mode:
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>2021-07-18 01:37:17 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2021-07-25 15:57:31 +0100
commit0e1d2a5ec77e98fa8a3362d5c28b367742325aa2 (patch)
tree57fe832bac5554f64682ec7700cb6361fa528568 /drivers/iio/adc
parentiio: adc: meson-saradc: Disable BL30 integration on G12A and newer SoCs (diff)
downloadlinux-dev-0e1d2a5ec77e98fa8a3362d5c28b367742325aa2.tar.xz
linux-dev-0e1d2a5ec77e98fa8a3362d5c28b367742325aa2.zip
iio: adc: meson-saradc: Add missing space between if and parenthesis
Add a missing space between if and the opening parenthesis to make the coding style consistent across the whole driver. No functional changes intended. Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Link: https://lore.kernel.org/r/20210717233718.332267-3-martin.blumenstingl@googlemail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r--drivers/iio/adc/meson_saradc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c
index e140db3e4016..b4e16f2e957f 100644
--- a/drivers/iio/adc/meson_saradc.c
+++ b/drivers/iio/adc/meson_saradc.c
@@ -347,7 +347,7 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev,
struct meson_sar_adc_priv *priv = iio_priv(indio_dev);
int regval, fifo_chan, fifo_val, count;
- if(!wait_for_completion_timeout(&priv->done,
+ if (!wait_for_completion_timeout(&priv->done,
msecs_to_jiffies(MESON_SAR_ADC_TIMEOUT)))
return -ETIMEDOUT;