OSDN Git Service

spi: Replace acpi_bus_get_device()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 1 Feb 2022 20:05:59 +0000 (21:05 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 2 Feb 2022 16:09:28 +0000 (16:09 +0000)
Replace acpi_bus_get_device() that is going to be dropped with
acpi_fetch_acpi_dev().

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lore.kernel.org/r/2231987.ElGaqSPkdT@kreacher
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c

index ec9f2ed..c98c55f 100644 (file)
@@ -2585,10 +2585,10 @@ static acpi_status acpi_register_spi_device(struct spi_controller *ctlr,
 static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
                                       void *data, void **return_value)
 {
+       struct acpi_device *adev = acpi_fetch_acpi_dev(handle);
        struct spi_controller *ctlr = data;
-       struct acpi_device *adev;
 
-       if (acpi_bus_get_device(handle, &adev))
+       if (!adev)
                return AE_OK;
 
        return acpi_register_spi_device(ctlr, adev);