Commit c30685c6 authored by Ioana Ciornei's avatar Ioana Ciornei Committed by Greg Kroah-Hartman

staging: iio: adc: remove space after cast

Remove the space after an explicit cast because there is no
point in having it
Signed-off-by: default avatarIoana Ciornei <ciorneiioana@gmail.com>
Reviewed-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 603f102f
...@@ -424,7 +424,7 @@ static ssize_t ad7192_set(struct device *dev, ...@@ -424,7 +424,7 @@ static ssize_t ad7192_set(struct device *dev,
return -EBUSY; return -EBUSY;
} }
switch ((u32) this_attr->address) { switch ((u32)this_attr->address) {
case AD7192_REG_GPOCON: case AD7192_REG_GPOCON:
if (val) if (val)
st->gpocon |= AD7192_GPOCON_BPDSW; st->gpocon |= AD7192_GPOCON_BPDSW;
......
...@@ -604,7 +604,7 @@ static ssize_t ad7280_read_channel_config(struct device *dev, ...@@ -604,7 +604,7 @@ static ssize_t ad7280_read_channel_config(struct device *dev,
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
unsigned val; unsigned val;
switch ((u32) this_attr->address) { switch ((u32)this_attr->address) {
case AD7280A_CELL_OVERVOLTAGE: case AD7280A_CELL_OVERVOLTAGE:
val = 1000 + (st->cell_threshhigh * 1568) / 100; val = 1000 + (st->cell_threshhigh * 1568) / 100;
break; break;
...@@ -640,7 +640,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev, ...@@ -640,7 +640,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
if (ret) if (ret)
return ret; return ret;
switch ((u32) this_attr->address) { switch ((u32)this_attr->address) {
case AD7280A_CELL_OVERVOLTAGE: case AD7280A_CELL_OVERVOLTAGE:
case AD7280A_CELL_UNDERVOLTAGE: case AD7280A_CELL_UNDERVOLTAGE:
val = ((val - 1000) * 100) / 1568; /* LSB 15.68mV */ val = ((val - 1000) * 100) / 1568; /* LSB 15.68mV */
...@@ -656,7 +656,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev, ...@@ -656,7 +656,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
val = clamp(val, 0L, 0xFFL); val = clamp(val, 0L, 0xFFL);
mutex_lock(&indio_dev->mlock); mutex_lock(&indio_dev->mlock);
switch ((u32) this_attr->address) { switch ((u32)this_attr->address) {
case AD7280A_CELL_OVERVOLTAGE: case AD7280A_CELL_OVERVOLTAGE:
st->cell_threshhigh = val; st->cell_threshhigh = val;
break; break;
......
...@@ -97,7 +97,7 @@ static int ad7606_read_raw(struct iio_dev *indio_dev, ...@@ -97,7 +97,7 @@ static int ad7606_read_raw(struct iio_dev *indio_dev,
if (ret < 0) if (ret < 0)
return ret; return ret;
*val = (short) ret; *val = (short)ret;
return IIO_VAL_INT; return IIO_VAL_INT;
case IIO_CHAN_INFO_SCALE: case IIO_CHAN_INFO_SCALE:
*val = st->range * 2; *val = st->range * 2;
......
...@@ -22,7 +22,7 @@ static int ad7606_par16_read_block(struct device *dev, ...@@ -22,7 +22,7 @@ static int ad7606_par16_read_block(struct device *dev,
struct iio_dev *indio_dev = platform_get_drvdata(pdev); struct iio_dev *indio_dev = platform_get_drvdata(pdev);
struct ad7606_state *st = iio_priv(indio_dev); struct ad7606_state *st = iio_priv(indio_dev);
insw((unsigned long) st->base_address, buf, count); insw((unsigned long)st->base_address, buf, count);
return 0; return 0;
} }
...@@ -38,7 +38,7 @@ static int ad7606_par8_read_block(struct device *dev, ...@@ -38,7 +38,7 @@ static int ad7606_par8_read_block(struct device *dev,
struct iio_dev *indio_dev = platform_get_drvdata(pdev); struct iio_dev *indio_dev = platform_get_drvdata(pdev);
struct ad7606_state *st = iio_priv(indio_dev); struct ad7606_state *st = iio_priv(indio_dev);
insb((unsigned long) st->base_address, buf, count * 2); insb((unsigned long)st->base_address, buf, count * 2);
return 0; return 0;
} }
......
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