Commit a63b3e13 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by hongrongxuan
Browse files

driver core: Provide device_match_acpi_handle() helper

mainline inclusion
from mainline-v5.16-rc1
commit a164ff53
category: cleanup
bugzilla: https://gitee.com/openeuler/kernel/issues/I9QV07

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=a164ff53cbd34479aeac3366840669b10845ce53



----------------------------------------------------------------------------

We have a couple of users of this helper, make it available for them.

The prototype for the helper is specifically crafted in order to be
easily used with bus_find_device() call. That's why its location is
in the driver core rather than ACPI.

Reviewed-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211014134756.39092-1-andriy.shevchenko@linux.intel.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarhongrongxuan <hongrongxuan@huawei.com>
parent ebb5c34d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -4422,6 +4422,12 @@ int device_match_acpi_dev(struct device *dev, const void *adev)
}
EXPORT_SYMBOL(device_match_acpi_dev);

int device_match_acpi_handle(struct device *dev, const void *handle)
{
	return ACPI_HANDLE(dev) == handle;
}
EXPORT_SYMBOL(device_match_acpi_handle);

int device_match_any(struct device *dev, const void *unused)
{
	return 1;
+1 −0
Original line number Diff line number Diff line
@@ -143,6 +143,7 @@ int device_match_of_node(struct device *dev, const void *np);
int device_match_fwnode(struct device *dev, const void *fwnode);
int device_match_devt(struct device *dev, const void *pdevt);
int device_match_acpi_dev(struct device *dev, const void *adev);
int device_match_acpi_handle(struct device *dev, const void *handle);
int device_match_any(struct device *dev, const void *unused);

/* iterator helpers for buses */