[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241223204452.000067e6@huawei.com>
Date: Mon, 23 Dec 2024 20:44:52 +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 07/11] slimbus: core: Remove of_slim_match_dev()
On Wed, 11 Dec 2024 08:08:09 +0800
Zijun Hu <zijun_hu@...oud.com> wrote:
> From: Zijun Hu <quic_zijuhu@...cinc.com>
>
> static of_slim_match_dev() has same function as API device_match_of_node().
>
> Remove the former and use the later instead.
>
> Signed-off-by: Zijun Hu <quic_zijuhu@...cinc.com>
Nice tidy up given the current code is dance up and down containing structure to exactly
the same device it started with.
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@...wei.com>
> ---
> drivers/slimbus/core.c | 10 +---------
> 1 file changed, 1 insertion(+), 9 deletions(-)
>
> diff --git a/drivers/slimbus/core.c b/drivers/slimbus/core.c
> index ab927fd077cb4fe1e29c004269fe52b2896c302f..005fa2ef100f526df5603d212b6334c06a366c94 100644
> --- a/drivers/slimbus/core.c
> +++ b/drivers/slimbus/core.c
> @@ -385,21 +385,13 @@ struct slim_device *slim_get_device(struct slim_controller *ctrl,
> }
> EXPORT_SYMBOL_GPL(slim_get_device);
>
> -static int of_slim_match_dev(struct device *dev, const void *data)
> -{
> - const struct device_node *np = data;
> - struct slim_device *sbdev = to_slim_device(dev);
> -
> - return (sbdev->dev.of_node == np);
> -}
> -
> static struct slim_device *of_find_slim_device(struct slim_controller *ctrl,
> struct device_node *np)
> {
> struct slim_device *sbdev;
> struct device *dev;
>
> - dev = device_find_child(ctrl->dev, np, of_slim_match_dev);
> + dev = device_find_child(ctrl->dev, np, device_match_of_node);
> if (dev) {
> sbdev = to_slim_device(dev);
> return sbdev;
>
Powered by blists - more mailing lists