From: Sergey Shtylyov <s.shtylyov@omp.ru>
To: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>,
Damien Le Moal <damien.lemoal@opensource.wdc.com>
Cc: Rob Herring <robh+dt@kernel.org>, <linux-kernel@vger.kernel.org>,
Prabhakar <prabhakar.csengg@gmail.com>,
<linux-ide@vger.kernel.org>
Subject: Re: [PATCH v3 07/10] ata: pata_platform: Merge pata_of_platform into pata_platform
Date: Mon, 27 Dec 2021 23:36:03 +0300 [thread overview]
Message-ID: <53445984-2fc4-ea3c-b499-5575c7de2f6f@omp.ru> (raw)
In-Reply-To: <20211224131300.18198-8-prabhakar.mahadev-lad.rj@bp.renesas.com>
On 12/24/21 4:12 PM, Lad Prabhakar wrote:
> Merge the OF pata_of_platform driver into pata_platform.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
[...]
> diff --git a/drivers/ata/pata_platform.c b/drivers/ata/pata_platform.c
> index f500f631f72b..4273f1a9abd2 100644
> --- a/drivers/ata/pata_platform.c
> +++ b/drivers/ata/pata_platform.c
[...]
> /*
> * And the IRQ
> */
> - if (irq_res) {
> - irq = irq_res->start;
> - irq_flags = (irq_res->flags & IRQF_TRIGGER_MASK) | IRQF_SHARED;
> + if (priv->irq_res && priv->irq_res->start > 0) {
I thought you've just dropped the > 0 check?
[...]
> @@ -168,46 +177,34 @@ int __pata_platform_probe(struct device *dev, struct resource *io_res,
>
> ap->ioaddr.altstatus_addr = ap->ioaddr.ctl_addr;
>
> - pata_platform_setup_port(&ap->ioaddr, ioport_shift);
> + pata_platform_setup_port(&ap->ioaddr, priv->ioport_shift);
>
> ata_port_desc(ap, "%s cmd 0x%llx ctl 0x%llx", mmio ? "mmio" : "ioport",
> - (unsigned long long)io_res->start,
> - (unsigned long long)ctl_res->start);
> + (unsigned long long)priv->io_res->start,
> + (unsigned long long)priv->ctl_res->start);
As Andy has noted, these could be converted to %pR (but only after this patch)...
[...]
> @@ -216,21 +213,108 @@ static int pata_platform_probe(struct platform_device *pdev)
> irq = platform_get_irq_optional(pdev, 0);
> if (irq < 0 && irq != -ENXIO)
> return irq;
> +
> if (irq > 0) {
> - memset(&irq_res, 0x0, sizeof(struct resource));
> - irq_res.start = irq;
> + struct resource *irq_res;
> +
> + irq_res = devm_kzalloc(&pdev->dev, sizeof(*irq_res), GFP_KERNEL);
> + if (!irq_res)
> + return -ENOMEM;
> +
> + irq_res->start = irq;
> + priv->irq_res = irq_res;
Is that enough? Flags not needed?
[...]
> +static int pata_of_platform_get_pdata(struct platform_device *ofdev,
> + struct pata_platform_priv *priv)
Can I suggest another name, like pata_platform_parse_dt()?
[...]
> +static int pata_platform_get_pdata(struct platform_device *pdev,
> + struct pata_platform_priv *priv)
Can I suggest another name, like pata_platform_init_pdata()?
> +{
> + struct pata_platform_info *pp_info = dev_get_platdata(&pdev->dev);
> + int ret;
> +
> + /*
> + * Simple resource validation ..
> + */
> + if ((pdev->num_resources != 3) && (pdev->num_resources != 2)) {
> + dev_err(&pdev->dev, "invalid number of resources\n");
> + return -EINVAL;
> + }
Hm, do we really need this check? If we drop it beforehand, we could call
pata_platform_get_resources() only once (and expand it inline?).
> +
> + ret = pata_platform_get_resources(pdev, priv);
> + if (ret)
> + return ret;
> +
> + priv->ioport_shift = pp_info ? pp_info->ioport_shift : 0;
> + priv->pio_mask = pio_mask;
> + priv->use16bit = false;
> +
> + return 0;
> +}
> +
[...]
MBR, Sergey
next prev parent reply other threads:[~2021-12-27 20:36 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-24 13:12 [PATCH v3 00/10] ata: pata_platform: Refurbish the driver Lad Prabhakar
2021-12-24 13:12 ` [PATCH v3 01/10] ata: pata_platform: Make use of platform_get_mem_or_io() Lad Prabhakar
2021-12-24 17:56 ` Sergey Shtylyov
2021-12-24 18:01 ` Lad, Prabhakar
2021-12-24 13:12 ` [PATCH v3 02/10] ata: pata_platform: Drop use of unlikely() in pata_platform_probe Lad Prabhakar
2021-12-24 17:54 ` Sergey Shtylyov
2021-12-24 18:02 ` Lad, Prabhakar
2021-12-26 11:56 ` Damien Le Moal
2021-12-26 14:21 ` Lad, Prabhakar
2021-12-24 13:12 ` [PATCH v3 03/10] ata: pata_of_platform: Use platform_get_irq_optional() to get the interrupt Lad Prabhakar
2021-12-25 17:01 ` Andy Shevchenko
2021-12-25 17:13 ` Lad, Prabhakar
2021-12-27 19:48 ` Sergey Shtylyov
2021-12-24 13:12 ` [PATCH v3 04/10] ata: pata_platform: " Lad Prabhakar
2021-12-27 19:58 ` Sergey Shtylyov
2021-12-28 9:33 ` Sergey Shtylyov
2022-01-04 19:42 ` Lad, Prabhakar
2021-12-24 13:12 ` [PATCH v3 05/10] ata: pata_platform: Drop checking IRQ number Lad Prabhakar
2021-12-27 20:03 ` Sergey Shtylyov
2021-12-24 13:12 ` [PATCH v3 06/10] ata: pata_of_platform: Make use of platform_get_mem_or_io() Lad Prabhakar
2021-12-27 20:05 ` Sergey Shtylyov
2021-12-24 13:12 ` [PATCH v3 07/10] ata: pata_platform: Merge pata_of_platform into pata_platform Lad Prabhakar
2021-12-25 17:16 ` Andy Shevchenko
2021-12-25 17:25 ` Lad, Prabhakar
2021-12-25 17:37 ` Andy Shevchenko
2021-12-27 20:54 ` Sergey Shtylyov
2021-12-27 20:55 ` Sergey Shtylyov
2021-12-27 20:36 ` Sergey Shtylyov [this message]
2021-12-24 13:12 ` [PATCH v3 08/10] ata: pata_platform: Drop validating num_resources count Lad Prabhakar
2021-12-27 20:38 ` Sergey Shtylyov
2021-12-24 13:12 ` [PATCH v3 09/10] ata: pata_platform: Sort the #includes alphabetically Lad Prabhakar
2021-12-27 20:40 ` Sergey Shtylyov
2021-12-24 13:12 ` [PATCH v3 10/10] ata: pata_platform: Make use of GENMASK() macro Lad Prabhakar
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=53445984-2fc4-ea3c-b499-5575c7de2f6f@omp.ru \
--to=s.shtylyov@omp.ru \
--cc=damien.lemoal@opensource.wdc.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=prabhakar.csengg@gmail.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=robh+dt@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
all inboxes | Powered by JetHome®