From: Jonathan Cameron Date: Mon, 26 Apr 2021 17:02:45 +0000 (+0100) Subject: iio: dac: ad5766: Drop duplicate setting of iio_dev.dev.parent and of_node X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e42523c11f2a182a0969b0e7462337fc190f8ca2;p=linux.git iio: dac: ad5766: Drop duplicate setting of iio_dev.dev.parent and of_node This is set to the same value in devm_iio_device_alloc() so no need to do it again. Signed-off-by: Jonathan Cameron Cc: Cristian Pop Reviewed-by: Alexandru Ardelean Link: https://lore.kernel.org/r/20210426170251.351957-3-jic23@kernel.org --- diff --git a/drivers/iio/dac/ad5766.c b/drivers/iio/dac/ad5766.c index 79837a4b3a41e..3104ec32dfaca 100644 --- a/drivers/iio/dac/ad5766.c +++ b/drivers/iio/dac/ad5766.c @@ -597,8 +597,6 @@ static int ad5766_probe(struct spi_device *spi) indio_dev->channels = st->chip_info->channels; indio_dev->num_channels = st->chip_info->num_channels; indio_dev->info = &ad5766_info; - indio_dev->dev.parent = &spi->dev; - indio_dev->dev.of_node = spi->dev.of_node; indio_dev->name = spi_get_device_id(spi)->name; indio_dev->modes = INDIO_DIRECT_MODE;