diff options
author | 2024-12-24 21:05:08 +0800 | |
---|---|---|
committer | 2025-01-03 11:20:05 +0100 | |
commit | adf908c965798c33d1148393927a7c0c5d08053c (patch) | |
tree | 72e4e65f5e6c1054069d145954babd5ae0bc06fd /drivers/base/core.c | |
parent | gpio: sim: Remove gpio_sim_dev_match_fwnode() (diff) | |
download | wireguard-linux-adf908c965798c33d1148393927a7c0c5d08053c.tar.xz wireguard-linux-adf908c965798c33d1148393927a7c0c5d08053c.zip |
driver core: Introduce an device matching API device_match_type()
Introduce device_match_type() for purposes below:
- Test if a device matches with a specified device type.
- As argument of various device finding APIs to find a device with
specified type.
device_find_child() will use it to simplify operations later.
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
Link: https://lore.kernel.org/r/20241224-const_dfc_done-v5-9-6623037414d4@quicinc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/core.c')
-rw-r--r-- | drivers/base/core.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index 6f1b2a1dbbf7..d4c20e9b23da 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c @@ -5228,6 +5228,12 @@ int device_match_name(struct device *dev, const void *name) } EXPORT_SYMBOL_GPL(device_match_name); +int device_match_type(struct device *dev, const void *type) +{ + return dev->type == type; +} +EXPORT_SYMBOL_GPL(device_match_type); + int device_match_of_node(struct device *dev, const void *np) { return np && dev->of_node == np; |