From: "Alim Akhtar" <alim.akhtar@samsung.com>
To: 'Colin King' <colin.king@canonical.com>,
'Kishon Vijay Abraham I' <kishon@ti.com>,
'Vinod Koul' <vkoul@kernel.org>,
'Seungwon Jeon' <essuuj@gmail.com>,
'Kiwoong Kim' <kwmad.kim@samsung.com>
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: RE: [PATCH][next] phy: samsung-ufs: fix check on failed devm_clk_get call for rx1_symbol_clk
Date: Tue, 21 Jul 2020 00:49:53 +0000 [thread overview]
Message-ID: <042e01d65ef8$d34fefe0$79efcfa0$@samsung.com> (raw)
In-Reply-To: <20200720162952.339697-1-colin.king@canonical.com>
Hello Colin,
> -----Original Message-----
> From: Colin King <colin.king@canonical.com>
> Sent: 20 July 2020 22:00
> To: Kishon Vijay Abraham I <kishon@ti.com>; Vinod Koul <vkoul@kernel.org>;
> Seungwon Jeon <essuuj@gmail.com>; Kiwoong Kim
> <kwmad.kim@samsung.com>; Alim Akhtar <alim.akhtar@samsung.com>
> Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH][next] phy: samsung-ufs: fix check on failed devm_clk_get call
> for rx1_symbol_clk
>
> From: Colin Ian King <colin.king@canonical.com>
>
> The check to see if the call to devm_clk_get on rx1_symbol_clk is checking the
> wrong variable, this looks like a copy-paste error. Fix this to check
> phy->rx1_symbol instead of phy->rx0_symbol.
>
This fix is already posted by Gustavo [1]
[1] https://lkml.org/lkml/2020/7/20/617
Thanks!
> Addresses-Coverity: ("Copy-paste error")
> Fixes: bca21e930451 ("phy: samsung-ufs: add UFS PHY driver for samsung SoC")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/phy/samsung/phy-samsung-ufs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/phy/samsung/phy-samsung-ufs.c
> b/drivers/phy/samsung/phy-samsung-ufs.c
> index 43ef77d1d96c..9832599a0283 100644
> --- a/drivers/phy/samsung/phy-samsung-ufs.c
> +++ b/drivers/phy/samsung/phy-samsung-ufs.c
> @@ -147,7 +147,7 @@ static int samsung_ufs_phy_symbol_clk_init(struct
> samsung_ufs_phy *phy)
> }
>
> phy->rx1_symbol_clk = devm_clk_get(phy->dev, "rx1_symbol_clk");
> - if (IS_ERR(phy->rx0_symbol_clk)) {
> + if (IS_ERR(phy->rx1_symbol_clk)) {
> dev_err(phy->dev, "failed to get rx1_symbol_clk clock\n");
> return PTR_ERR(phy->rx1_symbol_clk);
> }
> --
> 2.27.0
WARNING: multiple messages have this Message-ID (diff)
From: "Alim Akhtar" <alim.akhtar@samsung.com>
To: "'Colin King'" <colin.king@canonical.com>,
"'Kishon Vijay Abraham I'" <kishon@ti.com>,
"'Vinod Koul'" <vkoul@kernel.org>,
"'Seungwon Jeon'" <essuuj@gmail.com>,
"'Kiwoong Kim'" <kwmad.kim@samsung.com>
Cc: <kernel-janitors@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH][next] phy: samsung-ufs: fix check on failed devm_clk_get call for rx1_symbol_clk
Date: Tue, 21 Jul 2020 06:19:40 +0530 [thread overview]
Message-ID: <042e01d65ef8$d34fefe0$79efcfa0$@samsung.com> (raw)
In-Reply-To: <20200720162952.339697-1-colin.king@canonical.com>
Hello Colin,
> -----Original Message-----
> From: Colin King <colin.king@canonical.com>
> Sent: 20 July 2020 22:00
> To: Kishon Vijay Abraham I <kishon@ti.com>; Vinod Koul <vkoul@kernel.org>;
> Seungwon Jeon <essuuj@gmail.com>; Kiwoong Kim
> <kwmad.kim@samsung.com>; Alim Akhtar <alim.akhtar@samsung.com>
> Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH][next] phy: samsung-ufs: fix check on failed devm_clk_get call
> for rx1_symbol_clk
>
> From: Colin Ian King <colin.king@canonical.com>
>
> The check to see if the call to devm_clk_get on rx1_symbol_clk is checking the
> wrong variable, this looks like a copy-paste error. Fix this to check
> phy->rx1_symbol instead of phy->rx0_symbol.
>
This fix is already posted by Gustavo [1]
[1] https://lkml.org/lkml/2020/7/20/617
Thanks!
> Addresses-Coverity: ("Copy-paste error")
> Fixes: bca21e930451 ("phy: samsung-ufs: add UFS PHY driver for samsung SoC")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/phy/samsung/phy-samsung-ufs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/phy/samsung/phy-samsung-ufs.c
> b/drivers/phy/samsung/phy-samsung-ufs.c
> index 43ef77d1d96c..9832599a0283 100644
> --- a/drivers/phy/samsung/phy-samsung-ufs.c
> +++ b/drivers/phy/samsung/phy-samsung-ufs.c
> @@ -147,7 +147,7 @@ static int samsung_ufs_phy_symbol_clk_init(struct
> samsung_ufs_phy *phy)
> }
>
> phy->rx1_symbol_clk = devm_clk_get(phy->dev, "rx1_symbol_clk");
> - if (IS_ERR(phy->rx0_symbol_clk)) {
> + if (IS_ERR(phy->rx1_symbol_clk)) {
> dev_err(phy->dev, "failed to get rx1_symbol_clk clock\n");
> return PTR_ERR(phy->rx1_symbol_clk);
> }
> --
> 2.27.0
next prev parent reply other threads:[~2020-07-21 0:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20200720162959epcas5p1bf43c0c67ee0c098428b78b2d0ded2db@epcas5p1.samsung.com>
2020-07-20 16:29 ` [PATCH][next] phy: samsung-ufs: fix check on failed devm_clk_get call for rx1_symbol_clk Colin King
2020-07-20 16:29 ` Colin King
2020-07-21 0:49 ` Alim Akhtar [this message]
2020-07-21 0:49 ` Alim Akhtar
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='042e01d65ef8$d34fefe0$79efcfa0$@samsung.com' \
--to=alim.akhtar@samsung.com \
--cc=colin.king@canonical.com \
--cc=essuuj@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=kishon@ti.com \
--cc=kwmad.kim@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=vkoul@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.