From: Andy Shevchenko Date: Wed, 15 Jun 2022 11:47:46 +0000 (+0300) Subject: iio: proximity: sx_common: Allow IIO core to take care of firmware node X-Git-Tag: v6.0-rc1~136^2~4^2~61 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f1e252c5d2d8e54d60ba9e43b2ec9473f3a1c5b7;p=tomoyo%2Ftomoyo-test1.git iio: proximity: sx_common: Allow IIO core to take care of firmware node IIO core correctly will take care of firmware node if it's not set in the driver. Drop ACPI and OF specifics from the driver and allow IIO core to handle this. Signed-off-by: Andy Shevchenko Reviewed-by: Gwendal Grignou Link: https://lore.kernel.org/r/20220615114746.2767-2-andriy.shevchenko@linux.intel.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/proximity/sx_common.c b/drivers/iio/proximity/sx_common.c index 9f2e47385198..d70a6b4f0bf8 100644 --- a/drivers/iio/proximity/sx_common.c +++ b/drivers/iio/proximity/sx_common.c @@ -5,7 +5,6 @@ * Common part of most Semtech SAR sensor. */ -#include #include #include #include @@ -519,8 +518,6 @@ int sx_common_probe(struct i2c_client *client, if (ret) return dev_err_probe(dev, ret, "error reading WHOAMI\n"); - ACPI_COMPANION_SET(&indio_dev->dev, ACPI_COMPANION(dev)); - indio_dev->dev.of_node = client->dev.of_node; indio_dev->modes = INDIO_DIRECT_MODE; indio_dev->channels = data->chip_info->iio_channels;