All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
@ 2022-06-27  2:05 Li kunyu
  2022-06-27 20:15 ` Bjorn Andersson
  2022-06-28 20:19 ` (subset) " Bjorn Andersson
  0 siblings, 2 replies; 5+ messages in thread
From: Li kunyu @ 2022-06-27  2:05 UTC (permalink / raw)
  To: agross, bjorn.andersson, mturquette, sboyd
  Cc: linux-arm-msm, linux-clk, linux-kernel, Li kunyu

I think this semicolon could be deleted.

Signed-off-by: Li kunyu <kunyu@nfschina.com>
---
 drivers/clk/qcom/gcc-sm6350.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/gcc-sm6350.c b/drivers/clk/qcom/gcc-sm6350.c
index a4f7fba70393..69412400efa4 100644
--- a/drivers/clk/qcom/gcc-sm6350.c
+++ b/drivers/clk/qcom/gcc-sm6350.c
@@ -2558,7 +2558,7 @@ static int gcc_sm6350_probe(struct platform_device *pdev)
 	if (ret)
 		return ret;
 
-	return qcom_cc_really_probe(pdev, &gcc_sm6350_desc, regmap);;
+	return qcom_cc_really_probe(pdev, &gcc_sm6350_desc, regmap);
 }
 
 static struct platform_driver gcc_sm6350_driver = {
-- 
2.18.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
  2022-06-27  2:05 [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon Li kunyu
@ 2022-06-27 20:15 ` Bjorn Andersson
  2022-06-28 20:19 ` (subset) " Bjorn Andersson
  1 sibling, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2022-06-27 20:15 UTC (permalink / raw)
  To: Li kunyu
  Cc: agross, mturquette, sboyd, linux-arm-msm, linux-clk, linux-kernel

On Sun 26 Jun 21:05 CDT 2022, Li kunyu wrote:

> I think this semicolon could be deleted.
> 

Thank you for the patch Li.

Please look at the git log for suggestions about the prefix for your
commit subject (clk: qcom: gcc-sm6350: in this case).

I've updated the commit message and picked up the patch.

Regards,
Bjorn

> Signed-off-by: Li kunyu <kunyu@nfschina.com>
> ---
>  drivers/clk/qcom/gcc-sm6350.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/qcom/gcc-sm6350.c b/drivers/clk/qcom/gcc-sm6350.c
> index a4f7fba70393..69412400efa4 100644
> --- a/drivers/clk/qcom/gcc-sm6350.c
> +++ b/drivers/clk/qcom/gcc-sm6350.c
> @@ -2558,7 +2558,7 @@ static int gcc_sm6350_probe(struct platform_device *pdev)
>  	if (ret)
>  		return ret;
>  
> -	return qcom_cc_really_probe(pdev, &gcc_sm6350_desc, regmap);;
> +	return qcom_cc_really_probe(pdev, &gcc_sm6350_desc, regmap);
>  }
>  
>  static struct platform_driver gcc_sm6350_driver = {
> -- 
> 2.18.2
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: (subset) [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
  2022-06-27  2:05 [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon Li kunyu
  2022-06-27 20:15 ` Bjorn Andersson
@ 2022-06-28 20:19 ` Bjorn Andersson
  2022-06-29  1:41   ` Li kunyu
  2022-06-29  1:42   ` Li kunyu
  1 sibling, 2 replies; 5+ messages in thread
From: Bjorn Andersson @ 2022-06-28 20:19 UTC (permalink / raw)
  To: mturquette, sboyd, agross, Li kunyu
  Cc: linux-clk, linux-arm-msm, linux-kernel

On Mon, 27 Jun 2022 10:05:00 +0800, Li kunyu wrote:
> I think this semicolon could be deleted.
> 
> 

Applied, thanks!

[1/1] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
      commit: 255a47e745674dbbda9250ae0ad1f78a49179988

Best regards,
-- 
Bjorn Andersson <bjorn.andersson@linaro.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: (subset) [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
  2022-06-28 20:19 ` (subset) " Bjorn Andersson
@ 2022-06-29  1:41   ` Li kunyu
  2022-06-29  1:42   ` Li kunyu
  1 sibling, 0 replies; 5+ messages in thread
From: Li kunyu @ 2022-06-29  1:41 UTC (permalink / raw)
  To: bjorn.andersson
  Cc: agross, kunyu, linux-arm-msm, linux-clk, linux-kernel, mturquette, sboyd


thanks!


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: (subset) [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon
  2022-06-28 20:19 ` (subset) " Bjorn Andersson
  2022-06-29  1:41   ` Li kunyu
@ 2022-06-29  1:42   ` Li kunyu
  1 sibling, 0 replies; 5+ messages in thread
From: Li kunyu @ 2022-06-29  1:42 UTC (permalink / raw)
  To: bjorn.andersson
  Cc: agross, kunyu, linux-arm-msm, linux-clk, linux-kernel, mturquette, sboyd


thanks!


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-06-29  1:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-27  2:05 [PATCH] drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon Li kunyu
2022-06-27 20:15 ` Bjorn Andersson
2022-06-28 20:19 ` (subset) " Bjorn Andersson
2022-06-29  1:41   ` Li kunyu
2022-06-29  1:42   ` Li kunyu

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.