]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gpio-amdpt: ACPI: Use the ACPI_COMPANION() macro directly
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 13 Oct 2021 16:06:40 +0000 (18:06 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 26 Oct 2021 13:49:47 +0000 (15:49 +0200)
The ACPI_HANDLE() macro is a wrapper arond the ACPI_COMPANION()
macro and the ACPI handle produced by the former comes from the
ACPI device object produced by the latter, so it is way more
straightforward to evaluate the latter directly instead of passing
the handle produced by the former to acpi_bus_get_device().

Modify pt_gpio_probe() accordingly (no intentional functional impact).

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Bartosz Golaszewski <brgl@bgdev.pl>
drivers/gpio/gpio-amdpt.c

index 44398992ae15f0d7f53a146fb6a71f262e52d62d..bbf53e2891412a2e5dc87696a898bc01a3372cdc 100644 (file)
@@ -72,12 +72,10 @@ static void pt_gpio_free(struct gpio_chip *gc, unsigned offset)
 static int pt_gpio_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
-       struct acpi_device *acpi_dev;
-       acpi_handle handle = ACPI_HANDLE(dev);
        struct pt_gpio_chip *pt_gpio;
        int ret = 0;
 
-       if (acpi_bus_get_device(handle, &acpi_dev)) {
+       if (!ACPI_COMPANION(dev)) {
                dev_err(dev, "PT GPIO device node not found\n");
                return -ENODEV;
        }