On Wed, 22 Nov 2017 14:32:11 +0000 Colin King <colin.king@xxxxxxxxxxxxx> wrote: > From: Colin Ian King <colin.king@xxxxxxxxxxxxx> > > Pointer pdata is being assigned but it is never being used, hence > it is redundant and can be removed. Cleans up clang warning: > > drivers/iio/accel/st_accel_core.c:952:3: warning: Value stored to 'pdata' > is never read > > Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> Applied to the togreg branch of iio.git and pushed out as testing. Thanks, Jonathan > --- > drivers/iio/accel/st_accel_core.c | 5 ----- > 1 file changed, 5 deletions(-) > > diff --git a/drivers/iio/accel/st_accel_core.c b/drivers/iio/accel/st_accel_core.c > index 460aa58e0159..6fe995cf16a6 100644 > --- a/drivers/iio/accel/st_accel_core.c > +++ b/drivers/iio/accel/st_accel_core.c > @@ -920,8 +920,6 @@ static const struct iio_trigger_ops st_accel_trigger_ops = { > int st_accel_common_probe(struct iio_dev *indio_dev) > { > struct st_sensor_data *adata = iio_priv(indio_dev); > - struct st_sensors_platform_data *pdata = > - (struct st_sensors_platform_data *)adata->dev->platform_data; > int irq = adata->get_irq_data_ready(indio_dev); > int err; > > @@ -948,9 +946,6 @@ int st_accel_common_probe(struct iio_dev *indio_dev) > &adata->sensor_settings->fs.fs_avl[0]; > adata->odr = adata->sensor_settings->odr.odr_avl[0].hz; > > - if (!pdata) > - pdata = (struct st_sensors_platform_data *)&default_accel_pdata; > - > err = st_sensors_init_sensor(indio_dev, adata->dev->platform_data); > if (err < 0) > goto st_accel_power_off; -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html