[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241223204518.000003ad@huawei.com>
Date: Mon, 23 Dec 2024 20:45:18 +0000
From: Jonathan Cameron <Jonathan.Cameron@...wei.com>
To: Zijun Hu <zijun_hu@...oud.com>
CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>, Linus Walleij
<linus.walleij@...aro.org>, Bartosz Golaszewski <brgl@...ev.pl>, Uwe
Kleine-König <ukleinek@...nel.org>, James Bottomley
<James.Bottomley@...senPartnership.com>, Thomas Weißschuh <thomas@...ch.de>, <linux-kernel@...r.kernel.org>,
<nvdimm@...ts.linux.dev>, <linux-sound@...r.kernel.org>,
<sparclinux@...r.kernel.org>, <linux-block@...r.kernel.org>,
<linux-cxl@...r.kernel.org>, <linux1394-devel@...ts.sourceforge.net>,
<arm-scmi@...r.kernel.org>, <linux-efi@...r.kernel.org>,
<linux-gpio@...r.kernel.org>, <dri-devel@...ts.freedesktop.org>,
<linux-mediatek@...ts.infradead.org>, <linux-hwmon@...r.kernel.org>,
<linux-media@...r.kernel.org>, <linux-pwm@...r.kernel.org>,
<linux-remoteproc@...r.kernel.org>, <linux-scsi@...r.kernel.org>,
<linux-usb@...r.kernel.org>, <linux-serial@...r.kernel.org>,
<netdev@...r.kernel.org>, Zijun Hu <quic_zijuhu@...cinc.com>
Subject: Re: [PATCH v4 08/11] gpio: sim: Remove gpio_sim_dev_match_fwnode()
On Wed, 11 Dec 2024 08:08:10 +0800
Zijun Hu <zijun_hu@...oud.com> wrote:
> From: Zijun Hu <quic_zijuhu@...cinc.com>
>
> gpio_sim_dev_match_fwnode() is a simple wrapper of API
> device_match_fwnode().
>
> Remove the needless wrapper and use the API instead.
>
> Signed-off-by: Zijun Hu <quic_zijuhu@...cinc.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@...wei.com>
> ---
> drivers/gpio/gpio-sim.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpio/gpio-sim.c b/drivers/gpio/gpio-sim.c
> index 370b71513bdb529112e157fa22a5451e02502a17..b1f33cbaaaa78aca324f99c45a868e7e79a9d672 100644
> --- a/drivers/gpio/gpio-sim.c
> +++ b/drivers/gpio/gpio-sim.c
> @@ -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;
>
>
Powered by blists - more mailing lists