aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/light/ltr501.c
diff options
context:
space:
mode:
authorJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-05 19:03:21 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-19 16:56:40 +0100
commit5372e1e5b4c8cc3c10295224b3d116d5625930a7 (patch)
treef785a117d1aea41c4b5d411f217da364737b6b9d /drivers/iio/light/ltr501.c
parentiio:magn:mmc35240: Drop unnecessary casts of val parameter in regmap_bulk* (diff)
downloadlinux-dev-5372e1e5b4c8cc3c10295224b3d116d5625930a7.tar.xz
linux-dev-5372e1e5b4c8cc3c10295224b3d116d5625930a7.zip
iio:light:ltr501: Drop unnecessary cast of parameter in regmap_bulk_read
This only occurs once in the driver and isn't needed in this case either, so drop it. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Diffstat (limited to 'drivers/iio/light/ltr501.c')
-rw-r--r--drivers/iio/light/ltr501.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/light/ltr501.c b/drivers/iio/light/ltr501.c
index 71f99d2a22c1..0626927251bb 100644
--- a/drivers/iio/light/ltr501.c
+++ b/drivers/iio/light/ltr501.c
@@ -1263,7 +1263,7 @@ static irqreturn_t ltr501_trigger_handler(int irq, void *p)
if (mask & LTR501_STATUS_ALS_RDY) {
ret = regmap_bulk_read(data->regmap, LTR501_ALS_DATA1,
- (u8 *)als_buf, sizeof(als_buf));
+ als_buf, sizeof(als_buf));
if (ret < 0)
return ret;
if (test_bit(0, indio_dev->active_scan_mask))