]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
gpio: merrifield: Fix build err without CONFIG_ACPI
authorYueHaibing <yuehaibing@huawei.com>
Fri, 12 Apr 2019 15:19:11 +0000 (23:19 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 23 Apr 2019 09:30:59 +0000 (11:30 +0200)
When building CONFIG_ACPI is not set
gcc warn this:

drivers/gpio/gpio-merrifield.c: In function mrfld_gpio_get_pinctrl_dev_name:
drivers/gpio/gpio-merrifield.c:388:19: error: dereferencing pointer to incomplete type struct acpi_device
   put_device(&adev->dev);
                   ^~

Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: d00d2109c367 ("gpio: merrifield: Convert to use acpi_dev_get_first_match_dev()")
Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/gpio/gpio-merrifield.c
include/acpi/acpi_bus.h
include/linux/acpi.h

index 2383dc78b1235f442933b7138e37d2d001f0b683..3302125e5265110722d131c7979a8a5d4da0e081 100644 (file)
@@ -385,7 +385,7 @@ static const char *mrfld_gpio_get_pinctrl_dev_name(struct mrfld_gpio *priv)
        adev = acpi_dev_get_first_match_dev("INTC1002", NULL, -1);
        if (adev) {
                name = devm_kstrdup(priv->dev, acpi_dev_name(adev), GFP_KERNEL);
-               put_device(&adev->dev);
+               acpi_dev_put(adev);
        } else {
                name = "pinctrl-merrifield";
        }
index f7981751ac776502b74bdecd4d7809deb9fc116c..2a462cf4eaa928c6c31216741948a44a3b3505b9 100644 (file)
@@ -687,6 +687,10 @@ static inline bool acpi_device_can_poweroff(struct acpi_device *adev)
                adev->power.states[ACPI_STATE_D3_HOT].flags.explicit_set);
 }
 
+static inline void acpi_dev_put(struct acpi_device *adev)
+{
+       put_device(&adev->dev);
+}
 #else  /* CONFIG_ACPI */
 
 static inline int register_acpi_bus_type(void *bus) { return 0; }
index 392413075cc0fd40418bd40fdbe965a66fe47496..ca55ae00f8c91d7383ab3968949fd4216e8ac0ca 100644 (file)
@@ -675,6 +675,8 @@ acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
        return NULL;
 }
 
+static inline void acpi_dev_put(struct acpi_device *adev) {}
+
 static inline bool is_acpi_node(struct fwnode_handle *fwnode)
 {
        return false;