iio: temperature: ltc2983: rename ltc2983_parse_dt()
authorNuno Sa <nuno.sa@analog.com>
Thu, 22 Feb 2024 12:55:53 +0000 (13:55 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 28 Feb 2024 19:26:36 +0000 (19:26 +0000)
Rename ltc2983_parse_dt() to ltc2983_parse_fw() as there's no explicit
dependency on devicetree. No functional change intended...

Signed-off-by: Nuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240222-ltc2983-misc-improv-v1-2-cf7d4457e98c@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/temperature/ltc2983.c

index acc631857e279c94f112ea99066573b3fc8e7cc2..23f2d43fc0404b1ad881d102a48febf467f05325 100644 (file)
@@ -1346,7 +1346,7 @@ static irqreturn_t ltc2983_irq_handler(int irq, void *data)
        __chan; \
 })
 
-static int ltc2983_parse_dt(struct ltc2983_data *st)
+static int ltc2983_parse_fw(struct ltc2983_data *st)
 {
        struct device *dev = &st->spi->dev;
        struct fwnode_handle *child;
@@ -1630,7 +1630,7 @@ static int ltc2983_probe(struct spi_device *spi)
        st->eeprom_key = cpu_to_be32(LTC2983_EEPROM_KEY);
        spi_set_drvdata(spi, st);
 
-       ret = ltc2983_parse_dt(st);
+       ret = ltc2983_parse_fw(st);
        if (ret)
                return ret;