diff options
| -rw-r--r-- | drivers/gpio/gpio-merrifield.c | 2 | ||||
| -rw-r--r-- | include/acpi/acpi_bus.h | 4 | ||||
| -rw-r--r-- | include/linux/acpi.h | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-merrifield.c b/drivers/gpio/gpio-merrifield.c index 2383dc78b123..3302125e5265 100644 --- a/drivers/gpio/gpio-merrifield.c +++ b/drivers/gpio/gpio-merrifield.c | |||
| @@ -385,7 +385,7 @@ static const char *mrfld_gpio_get_pinctrl_dev_name(struct mrfld_gpio *priv) | |||
| 385 | adev = acpi_dev_get_first_match_dev("INTC1002", NULL, -1); | 385 | adev = acpi_dev_get_first_match_dev("INTC1002", NULL, -1); |
| 386 | if (adev) { | 386 | if (adev) { |
| 387 | name = devm_kstrdup(priv->dev, acpi_dev_name(adev), GFP_KERNEL); | 387 | name = devm_kstrdup(priv->dev, acpi_dev_name(adev), GFP_KERNEL); |
| 388 | put_device(&adev->dev); | 388 | acpi_dev_put(adev); |
| 389 | } else { | 389 | } else { |
| 390 | name = "pinctrl-merrifield"; | 390 | name = "pinctrl-merrifield"; |
| 391 | } | 391 | } |
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index f7981751ac77..2a462cf4eaa9 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
| @@ -687,6 +687,10 @@ static inline bool acpi_device_can_poweroff(struct acpi_device *adev) | |||
| 687 | adev->power.states[ACPI_STATE_D3_HOT].flags.explicit_set); | 687 | adev->power.states[ACPI_STATE_D3_HOT].flags.explicit_set); |
| 688 | } | 688 | } |
| 689 | 689 | ||
| 690 | static inline void acpi_dev_put(struct acpi_device *adev) | ||
| 691 | { | ||
| 692 | put_device(&adev->dev); | ||
| 693 | } | ||
| 690 | #else /* CONFIG_ACPI */ | 694 | #else /* CONFIG_ACPI */ |
| 691 | 695 | ||
| 692 | static inline int register_acpi_bus_type(void *bus) { return 0; } | 696 | static inline int register_acpi_bus_type(void *bus) { return 0; } |
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 392413075cc0..ca55ae00f8c9 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
| @@ -675,6 +675,8 @@ acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv) | |||
| 675 | return NULL; | 675 | return NULL; |
| 676 | } | 676 | } |
| 677 | 677 | ||
| 678 | static inline void acpi_dev_put(struct acpi_device *adev) {} | ||
| 679 | |||
| 678 | static inline bool is_acpi_node(struct fwnode_handle *fwnode) | 680 | static inline bool is_acpi_node(struct fwnode_handle *fwnode) |
| 679 | { | 681 | { |
| 680 | return false; | 682 | return false; |
