Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb84ce74 authored by Wolfram Sang's avatar Wolfram Sang Committed by Jonathan Cameron
Browse files

iio: common: cros_ec_sensors: simplify getting .drvdata



We should get drvdata from struct device directly. Going via
platform_device is an unneeded step back and forth.

Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 3d56e198
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -447,8 +447,7 @@ EXPORT_SYMBOL_GPL(cros_ec_sensors_core_write);

static int __maybe_unused cros_ec_sensors_prepare(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct iio_dev *indio_dev = platform_get_drvdata(pdev);
	struct iio_dev *indio_dev = dev_get_drvdata(dev);
	struct cros_ec_sensors_core_state *st = iio_priv(indio_dev);

	if (st->curr_sampl_freq == 0)
@@ -470,8 +469,7 @@ static int __maybe_unused cros_ec_sensors_prepare(struct device *dev)

static void __maybe_unused cros_ec_sensors_complete(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct iio_dev *indio_dev = platform_get_drvdata(pdev);
	struct iio_dev *indio_dev = dev_get_drvdata(dev);
	struct cros_ec_sensors_core_state *st = iio_priv(indio_dev);

	if (st->curr_sampl_freq == 0)