From: Vladimir Oltean <vladimir.oltean@nxp.com>
To: Rob Herring <robh@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] irqchip/ls-scfg-msi: Use device_get_match_data()
Date: Tue, 24 Oct 2023 12:19:49 +0300 [thread overview]
Message-ID: <20231024091949.jqtlrieo3otbpyvp@skbuf> (raw)
In-Reply-To: <20231020130255.2954415-3-robh@kernel.org> <20231020130255.2954415-3-robh@kernel.org>
On Fri, Oct 20, 2023 at 08:02:56AM -0500, Rob Herring wrote:
> Use preferred device_get_match_data() instead of of_match_device() to
> get the driver match data in a single step without the unnecessary
> intermediate match pointer. With this, adjust the includes to
> explicitly include the correct headers. That also serves as
> preparation to remove implicit includes within the DT headers.
> of_platform.h currently includes platform_device.h among others.
>
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com>
> v2:
> - Expand commit message
> ---
> drivers/irqchip/irq-ls-scfg-msi.c | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/irqchip/irq-ls-scfg-msi.c b/drivers/irqchip/irq-ls-scfg-msi.c
> index f31a262fe438..15cf80b46322 100644
> --- a/drivers/irqchip/irq-ls-scfg-msi.c
> +++ b/drivers/irqchip/irq-ls-scfg-msi.c
> @@ -17,7 +17,8 @@
> #include <linux/irqdomain.h>
> #include <linux/of_irq.h>
> #include <linux/of_pci.h>
> -#include <linux/of_platform.h>
> +#include <linux/platform_device.h>
> +#include <linux/property.h>
> #include <linux/spinlock.h>
>
> #define MSI_IRQS_PER_MSIR 32
> @@ -334,20 +335,17 @@ MODULE_DEVICE_TABLE(of, ls_scfg_msi_id);
>
> static int ls_scfg_msi_probe(struct platform_device *pdev)
> {
> - const struct of_device_id *match;
> struct ls_scfg_msi *msi_data;
> struct resource *res;
> int i, ret;
>
> - match = of_match_device(ls_scfg_msi_id, &pdev->dev);
> - if (!match)
> - return -ENODEV;
> -
> msi_data = devm_kzalloc(&pdev->dev, sizeof(*msi_data), GFP_KERNEL);
> if (!msi_data)
> return -ENOMEM;
>
> - msi_data->cfg = (struct ls_scfg_msi_cfg *) match->data;
> + msi_data->cfg = (struct ls_scfg_msi_cfg *)device_get_match_data(&pdev->dev);
I wanted to suggest to drop the unnecessary cast of the void pointer.
But the driver keeps msi_data->cfg as a non-const pointer, and that
causes a warning that is otherwise suppressed by this cast. So eliminating
the type cast and keeping "cfg" as const is definitely a separate change.
> + if (!msi_data->cfg)
> + return -ENODEV;
>
> msi_data->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
> if (IS_ERR(msi_data->regs)) {
> --
> 2.42.0
>
next prev parent reply other threads:[~2023-10-24 9:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-20 13:02 Rob Herring
2023-10-24 9:19 ` Vladimir Oltean [this message]
2023-10-27 7:23 ` [tip: irq/core] " tip-bot2 for Rob Herring
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=20231024091949.jqtlrieo3otbpyvp@skbuf \
--to=vladimir.oltean@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
--cc=tglx@linutronix.de \
/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
all inboxes | Powered by JetHome®