From: Damien Le Moal <dlemoal@kernel.org>
To: Ma Ke <make_ruc2021@163.com>
Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] ata: sata_mv: aspeed: fix value check in mv_platform_probe()
Date: Tue, 10 Oct 2023 07:33:49 +0900 [thread overview]
Message-ID: <2c877878-7e30-43d6-ba93-d37cc2fbb1ef@kernel.org> (raw)
In-Reply-To: <20231009124955.4046988-1-make_ruc2021@163.com>
On 10/9/23 21:49, Ma Ke wrote:
> In mv_platform_probe(), check the return value of clk_prepare_enable()
> and return the error code if clk_prepare_enable() returns an
> unexpected value.
>
> Signed-off-by: Ma Ke <make_ruc2021@163.com>
> ---
> drivers/ata/sata_mv.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
> index 45e48d653c60..df3a02e7a50b 100644
> --- a/drivers/ata/sata_mv.c
> +++ b/drivers/ata/sata_mv.c
> @@ -4125,8 +4125,10 @@ static int mv_platform_probe(struct platform_device *pdev)
> hpriv->clk = clk_get(&pdev->dev, NULL);
> if (IS_ERR(hpriv->clk))
> dev_notice(&pdev->dev, "cannot get optional clkdev\n");
> - else
> - clk_prepare_enable(hpriv->clk);
> + else {
> + rc = clk_prepare_enable(hpriv->clk);
> + goto err;
This is wrong. The goto err should only be done if there is an error.
Did you even test your own patch ???
> + }
>
> for (port = 0; port < n_ports; port++) {
> char port_number[16];
--
Damien Le Moal
Western Digital Research
next prev parent reply other threads:[~2023-10-09 22:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-09 12:49 [PATCH v2] ata: sata_mv: aspeed: fix value check in mv_platform_probe() Ma Ke
2023-10-09 14:22 ` Niklas Cassel
2023-10-09 22:33 ` Damien Le Moal [this message]
2023-10-10 9:06 ` Niklas Cassel
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=2c877878-7e30-43d6-ba93-d37cc2fbb1ef@kernel.org \
--to=dlemoal@kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=make_ruc2021@163.com \
/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