mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-16 03:14:09 +00:00
iio: cros_ec: Remove unused variables
Fix gcc warnings about variable 'ec_device' being set but not used in these files: common/cros_ec_sensors/cros_ec_sensors.c:194:25 light/cros_ec_light_prox.c:184:25 Signed-off-by: Paolo Cretaro <paolocretaro@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
10c7a314c9
commit
5f045af0b5
2 changed files with 0 additions and 4 deletions
|
@ -191,7 +191,6 @@ static int cros_ec_sensors_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct cros_ec_dev *ec_dev = dev_get_drvdata(dev->parent);
|
struct cros_ec_dev *ec_dev = dev_get_drvdata(dev->parent);
|
||||||
struct cros_ec_device *ec_device;
|
|
||||||
struct iio_dev *indio_dev;
|
struct iio_dev *indio_dev;
|
||||||
struct cros_ec_sensors_state *state;
|
struct cros_ec_sensors_state *state;
|
||||||
struct iio_chan_spec *channel;
|
struct iio_chan_spec *channel;
|
||||||
|
@ -201,7 +200,6 @@ static int cros_ec_sensors_probe(struct platform_device *pdev)
|
||||||
dev_warn(&pdev->dev, "No CROS EC device found.\n");
|
dev_warn(&pdev->dev, "No CROS EC device found.\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
ec_device = ec_dev->ec_dev;
|
|
||||||
|
|
||||||
indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*state));
|
indio_dev = devm_iio_device_alloc(&pdev->dev, sizeof(*state));
|
||||||
if (!indio_dev)
|
if (!indio_dev)
|
||||||
|
|
|
@ -181,7 +181,6 @@ static int cros_ec_light_prox_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct cros_ec_dev *ec_dev = dev_get_drvdata(dev->parent);
|
struct cros_ec_dev *ec_dev = dev_get_drvdata(dev->parent);
|
||||||
struct cros_ec_device *ec_device;
|
|
||||||
struct iio_dev *indio_dev;
|
struct iio_dev *indio_dev;
|
||||||
struct cros_ec_light_prox_state *state;
|
struct cros_ec_light_prox_state *state;
|
||||||
struct iio_chan_spec *channel;
|
struct iio_chan_spec *channel;
|
||||||
|
@ -191,7 +190,6 @@ static int cros_ec_light_prox_probe(struct platform_device *pdev)
|
||||||
dev_warn(dev, "No CROS EC device found.\n");
|
dev_warn(dev, "No CROS EC device found.\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
ec_device = ec_dev->ec_dev;
|
|
||||||
|
|
||||||
indio_dev = devm_iio_device_alloc(dev, sizeof(*state));
|
indio_dev = devm_iio_device_alloc(dev, sizeof(*state));
|
||||||
if (!indio_dev)
|
if (!indio_dev)
|
||||||
|
|
Loading…
Add table
Reference in a new issue