media: ir-spi: Utilise temporary variable for struct device
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 5 Mar 2024 17:48:28 +0000 (19:48 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Mon, 25 Mar 2024 09:13:44 +0000 (10:13 +0100)
We have a temporary variable to keep pointer to struct device.
Utilise it inside the ->probe() implementation.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Andi Shyti <andi.shyti@kernel.org>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/rc/ir-spi.c

index 846d407a1f7e38b226580104b81113cb0f9ca7a9..19102bdcfd6feb6db6ea00ea6b80f9d6c3ddd78c 100644 (file)
@@ -121,11 +121,11 @@ static int ir_spi_probe(struct spi_device *spi)
        u8 dc;
        struct ir_spi_data *idata;
 
-       idata = devm_kzalloc(&spi->dev, sizeof(*idata), GFP_KERNEL);
+       idata = devm_kzalloc(dev, sizeof(*idata), GFP_KERNEL);
        if (!idata)
                return -ENOMEM;
 
-       idata->regulator = devm_regulator_get(&spi->dev, "irda_regulator");
+       idata->regulator = devm_regulator_get(dev, "irda_regulator");
        if (IS_ERR(idata->regulator))
                return PTR_ERR(idata->regulator);
 
@@ -154,7 +154,7 @@ static int ir_spi_probe(struct spi_device *spi)
 
        idata->freq = IR_SPI_DEFAULT_FREQUENCY;
 
-       return devm_rc_register_device(&spi->dev, idata->rc);
+       return devm_rc_register_device(dev, idata->rc);
 }
 
 static const struct of_device_id ir_spi_of_match[] = {