diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-03-13 11:49:49 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2020-03-21 11:26:10 +0100 |
commit | 49f20fc6fe7010e91f8d27847bea24bd990de953 (patch) | |
tree | 444b13b0b1b9af8ccab8122388268ce15deb4947 /drivers/iio/pressure | |
parent | iio: light: st_uvis25: Drop unneeded casting when print error code (diff) | |
download | linux-49f20fc6fe7010e91f8d27847bea24bd990de953.tar.xz linux-49f20fc6fe7010e91f8d27847bea24bd990de953.zip |
iio: st_sensors: Use dev_get_platdata() to get platform_data
Use dev_get_platdata() to get the platform_data instead of
referencing it directly.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/pressure')
-rw-r--r-- | drivers/iio/pressure/st_pressure_core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/iio/pressure/st_pressure_core.c b/drivers/iio/pressure/st_pressure_core.c index bd972cec4830..8bb47c3b4d6b 100644 --- a/drivers/iio/pressure/st_pressure_core.c +++ b/drivers/iio/pressure/st_pressure_core.c @@ -683,8 +683,7 @@ EXPORT_SYMBOL(st_press_get_settings); int st_press_common_probe(struct iio_dev *indio_dev) { struct st_sensor_data *press_data = iio_priv(indio_dev); - struct st_sensors_platform_data *pdata = - (struct st_sensors_platform_data *)press_data->dev->platform_data; + struct st_sensors_platform_data *pdata = dev_get_platdata(press_data->dev); int err; indio_dev->modes = INDIO_DIRECT_MODE; |