diff mbox series

drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon

Message ID 20220627020500.135125-1-kunyu@nfschina.com
State New
Headers show
Series drivers: the return value statement of the gcc_sm6350_probe function has an extra semicolon | expand

Commit Message

Li kunyu June 27, 2022, 2:05 a.m. UTC
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(-)

Comments

Bjorn Andersson June 28, 2022, 8:19 p.m. UTC | #1
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,
diff mbox series

Patch

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 = {