diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-03-18 16:00:54 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-04-01 04:55:56 -0400 |
commit | 817b4d64da036f5559297a2fdb82b8b14f4ffdcd (patch) | |
tree | fa02639adb2da258699965d4e2c222d38f0edca5 /include/linux/acpi.h | |
parent | 79a3aaa7b82e3106be97842dedfd8429248896e6 (diff) |
ACPI / utils: Introduce acpi_dev_get_first_match_dev() helper
The acpi_dev_get_first_match_name() is missing put_device() call
and thus keeping reference counting unbalanced.
In order to fix the issue introduce a new helper to convert existing users
one-by-one to a better API.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/acpi.h')
-rw-r--r-- | include/linux/acpi.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index d5dcebd7aad3..3e1d16b00513 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -669,6 +669,12 @@ static inline bool acpi_dev_present(const char *hid, const char *uid, s64 hrv) | |||
669 | return false; | 669 | return false; |
670 | } | 670 | } |
671 | 671 | ||
672 | static inline struct acpi_device * | ||
673 | acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv) | ||
674 | { | ||
675 | return NULL; | ||
676 | } | ||
677 | |||
672 | static inline const char * | 678 | static inline const char * |
673 | acpi_dev_get_first_match_name(const char *hid, const char *uid, s64 hrv) | 679 | acpi_dev_get_first_match_name(const char *hid, const char *uid, s64 hrv) |
674 | { | 680 | { |