diff options
author | simran singhal <singhalsimran0@gmail.com> | 2017-04-01 19:36:14 +0530 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2017-04-02 09:46:25 +0100 |
commit | 0b568b3c4ae582dc8f20960dc02dc229957ea3d3 (patch) | |
tree | 40f063f542be70916b02a7e55f710b9c2afadb6d /drivers/iio/adc/exynos_adc.c | |
parent | 5a70925b16f2ad3d68dd6ecc469c9507d9a18e6a (diff) | |
download | linux-0b568b3c4ae582dc8f20960dc02dc229957ea3d3.tar.bz2 |
iio: adc: Remove unnecessary cast on void pointer
The following Coccinelle script was used to detect this:
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
*((T *)e)
|
((T *)x)[...]
|
((T*)x)->f
|
- (T*)
e
)
Signed-off-by: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/exynos_adc.c')
-rw-r--r-- | drivers/iio/adc/exynos_adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/exynos_adc.c b/drivers/iio/adc/exynos_adc.c index ad1775b5f83c..6c5a7be9f8c1 100644 --- a/drivers/iio/adc/exynos_adc.c +++ b/drivers/iio/adc/exynos_adc.c @@ -579,7 +579,7 @@ static int exynos_read_s3c64xx_ts(struct iio_dev *indio_dev, int *x, int *y) static irqreturn_t exynos_adc_isr(int irq, void *dev_id) { - struct exynos_adc *info = (struct exynos_adc *)dev_id; + struct exynos_adc *info = dev_id; u32 mask = info->data->mask; /* Read value */ |