mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 15:04:27 +08:00
usb: typec: Replace custom implementation of device_match_fwnode()
Replace custom implementation of the device_match_fwnode(). Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Link: https://lore.kernel.org/r/20220927171924.61908-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fce703a991
commit
c9180362a9
@ -29,7 +29,7 @@ static int switch_fwnode_match(struct device *dev, const void *fwnode)
|
||||
if (!is_typec_switch_dev(dev))
|
||||
return 0;
|
||||
|
||||
return dev_fwnode(dev) == fwnode;
|
||||
return device_match_fwnode(dev, fwnode);
|
||||
}
|
||||
|
||||
static void *typec_switch_match(struct fwnode_handle *fwnode, const char *id,
|
||||
@ -259,7 +259,7 @@ static int mux_fwnode_match(struct device *dev, const void *fwnode)
|
||||
if (!is_typec_mux_dev(dev))
|
||||
return 0;
|
||||
|
||||
return dev_fwnode(dev) == fwnode;
|
||||
return device_match_fwnode(dev, fwnode);
|
||||
}
|
||||
|
||||
static void *typec_mux_match(struct fwnode_handle *fwnode, const char *id,
|
||||
|
@ -31,7 +31,7 @@ static bool dev_name_ends_with(struct device *dev, const char *suffix)
|
||||
|
||||
static int retimer_fwnode_match(struct device *dev, const void *fwnode)
|
||||
{
|
||||
return dev_fwnode(dev) == fwnode && dev_name_ends_with(dev, "-retimer");
|
||||
return device_match_fwnode(dev, fwnode) && dev_name_ends_with(dev, "-retimer");
|
||||
}
|
||||
|
||||
static void *typec_retimer_match(struct fwnode_handle *fwnode, const char *id, void *data)
|
||||
|
Loading…
Reference in New Issue
Block a user