mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
gpio: sim: Remove gpio_sim_dev_match_fwnode()
gpio_sim_dev_match_fwnode() is a simple wrapper of API device_match_fwnode(). Remove the needless wrapper and use the API instead. Acked-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> 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-8-6623037414d4@quicinc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
989e2b3569
commit
6687f282e9
|
|
@ -413,11 +413,6 @@ static int gpio_sim_setup_sysfs(struct gpio_sim_chip *chip)
|
|||
return devm_add_action_or_reset(dev, gpio_sim_sysfs_remove, chip);
|
||||
}
|
||||
|
||||
static int gpio_sim_dev_match_fwnode(struct device *dev, const void *data)
|
||||
{
|
||||
return device_match_fwnode(dev, data);
|
||||
}
|
||||
|
||||
static int gpio_sim_add_bank(struct fwnode_handle *swnode, struct device *dev)
|
||||
{
|
||||
struct gpio_sim_chip *chip;
|
||||
|
|
@ -503,7 +498,7 @@ static int gpio_sim_add_bank(struct fwnode_handle *swnode, struct device *dev)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
chip->dev = device_find_child(dev, swnode, gpio_sim_dev_match_fwnode);
|
||||
chip->dev = device_find_child(dev, swnode, device_match_fwnode);
|
||||
if (!chip->dev)
|
||||
return -ENODEV;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user