From: Zijun Hu <zijun_hu@icloud.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "Linus Walleij" <linus.walleij@linaro.org>,
"Bartosz Golaszewski" <brgl@bgdev.pl>,
"Uwe Kleine-König" <ukleinek@kernel.org>,
"James Bottomley" <James.Bottomley@HansenPartnership.com>,
"Thomas Weißschuh" <thomas@t-8ch.de>,
"Zijun Hu" <zijun_hu@icloud.com>,
linux-kernel@vger.kernel.org, nvdimm@lists.linux.dev,
linux-sound@vger.kernel.org, sparclinux@vger.kernel.org,
linux-block@vger.kernel.org, linux-cxl@vger.kernel.org,
linux1394-devel@lists.sourceforge.net, arm-scmi@vger.kernel.org,
linux-efi@vger.kernel.org, linux-gpio@vger.kernel.org,
dri-devel@lists.freedesktop.org,
linux-mediatek@lists.infradead.org, linux-hwmon@vger.kernel.org,
linux-media@vger.kernel.org, linux-pwm@vger.kernel.org,
linux-remoteproc@vger.kernel.org, linux-scsi@vger.kernel.org,
linux-usb@vger.kernel.org, linux-serial@vger.kernel.org,
netdev@vger.kernel.org, "Zijun Hu" <quic_zijuhu@quicinc.com>,
"Jonathan Cameron" <Jonathan.Cameron@huawei.com>
Subject: [PATCH v5 03/12] bus: fsl-mc: Constify fsl_mc_device_match()
Date: Tue, 24 Dec 2024 21:05:02 +0800 [thread overview]
Message-ID: <20241224-const_dfc_done-v5-3-6623037414d4@quicinc.com> (raw)
In-Reply-To: <20241224-const_dfc_done-v5-0-6623037414d4@quicinc.com>
From: Zijun Hu <quic_zijuhu@quicinc.com>
fsl_mc_device_match() does not modify caller's inputs.
To prepare for constifying API device_find_child() later.
Constify this comparison function by simply changing its
parameter types to const pointer.
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
---
drivers/bus/fsl-mc/dprc-driver.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/bus/fsl-mc/dprc-driver.c b/drivers/bus/fsl-mc/dprc-driver.c
index 4b68c84ef485055c9b300b4f7912a20f959b8ac1..11c8fadcf85148b4e4ea6b97b7efb6d4ddf22d3c 100644
--- a/drivers/bus/fsl-mc/dprc-driver.c
+++ b/drivers/bus/fsl-mc/dprc-driver.c
@@ -22,8 +22,8 @@ struct fsl_mc_child_objs {
struct fsl_mc_obj_desc *child_array;
};
-static bool fsl_mc_device_match(struct fsl_mc_device *mc_dev,
- struct fsl_mc_obj_desc *obj_desc)
+static bool fsl_mc_device_match(const struct fsl_mc_device *mc_dev,
+ const struct fsl_mc_obj_desc *obj_desc)
{
return mc_dev->obj_desc.id == obj_desc->id &&
strcmp(mc_dev->obj_desc.type, obj_desc->type) == 0;
--
2.34.1
next prev parent reply other threads:[~2024-12-24 13:07 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-24 13:04 [PATCH v5 00/12] driver core: Constify API device_find_child() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 01/12] libnvdimm: Replace namespace_match() with device_find_child_by_name() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 02/12] slimbus: core: Constify slim_eaddr_equal() Zijun Hu
2024-12-24 13:05 ` Zijun Hu [this message]
2024-12-24 13:05 ` [PATCH v5 04/12] driver core: Constify API device_find_child() and adapt for various usages Zijun Hu
2024-12-24 16:23 ` Jonathan Cameron
2025-02-20 10:31 ` Hans Verkuil
2024-12-24 13:05 ` [PATCH v5 05/12] driver core: Simplify API device_find_child_by_name() implementation Zijun Hu
2024-12-24 13:05 ` [PATCH v5 06/12] driver core: Remove match_any() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 07/12] slimbus: core: Remove of_slim_match_dev() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 08/12] gpio: sim: Remove gpio_sim_dev_match_fwnode() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 09/12] driver core: Introduce an device matching API device_match_type() Zijun Hu
2024-12-24 13:05 ` [PATCH v5 10/12] cxl/pmem: Replace match_nvdimm_bridge() with " Zijun Hu
2024-12-24 16:25 ` Jonathan Cameron
2024-12-24 13:05 ` [PATCH v5 11/12] cxl/pmem: Remove is_cxl_nvdimm_bridge() Zijun Hu
2024-12-24 16:25 ` Jonathan Cameron
2024-12-24 13:05 ` [PATCH v5 12/12] usb: typec: class: Remove both cable_match() and partner_match() Zijun Hu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241224-const_dfc_done-v5-3-6623037414d4@quicinc.com \
--to=zijun_hu@icloud.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=Jonathan.Cameron@huawei.com \
--cc=arm-scmi@vger.kernel.org \
--cc=brgl@bgdev.pl \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=linus.walleij@linaro.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-cxl@vger.kernel.org \
--cc=linux-efi@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pwm@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux1394-devel@lists.sourceforge.net \
--cc=netdev@vger.kernel.org \
--cc=nvdimm@lists.linux.dev \
--cc=quic_zijuhu@quicinc.com \
--cc=sparclinux@vger.kernel.org \
--cc=thomas@t-8ch.de \
--cc=ukleinek@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox