All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: imx: remove unneeded semicolon
@ 2020-10-27 18:57 ` trix
  0 siblings, 0 replies; 6+ messages in thread
From: trix @ 2020-10-27 18:57 UTC (permalink / raw)
  To: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	linux-imx, Anson.Huang, abel.vesa, peng.fan, leonard.crestez
  Cc: linux-clk, linux-arm-kernel, linux-kernel, Tom Rix

From: Tom Rix <trix@redhat.com>

A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
---
 drivers/clk/imx/clk-pll14xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
index aba36e4217d2..2b5ed86b9dbb 100644
--- a/drivers/clk/imx/clk-pll14xx.c
+++ b/drivers/clk/imx/clk-pll14xx.c
@@ -416,7 +416,7 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
 		       __func__, name);
 		kfree(pll);
 		return ERR_PTR(-EINVAL);
-	};
+	}
 
 	pll->base = base;
 	pll->hw.init = &init;
-- 
2.18.1


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

* [PATCH] clk: imx: remove unneeded semicolon
@ 2020-10-27 18:57 ` trix
  0 siblings, 0 replies; 6+ messages in thread
From: trix @ 2020-10-27 18:57 UTC (permalink / raw)
  To: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	linux-imx, Anson.Huang, abel.vesa, peng.fan, leonard.crestez
  Cc: Tom Rix, linux-clk, linux-arm-kernel, linux-kernel

From: Tom Rix <trix@redhat.com>

A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
---
 drivers/clk/imx/clk-pll14xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
index aba36e4217d2..2b5ed86b9dbb 100644
--- a/drivers/clk/imx/clk-pll14xx.c
+++ b/drivers/clk/imx/clk-pll14xx.c
@@ -416,7 +416,7 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
 		       __func__, name);
 		kfree(pll);
 		return ERR_PTR(-EINVAL);
-	};
+	}
 
 	pll->base = base;
 	pll->hw.init = &init;
-- 
2.18.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] clk: imx: remove unneeded semicolon
  2020-10-27 18:57 ` trix
@ 2020-10-27 19:15   ` Abel Vesa
  -1 siblings, 0 replies; 6+ messages in thread
From: Abel Vesa @ 2020-10-27 19:15 UTC (permalink / raw)
  To: trix
  Cc: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	linux-imx, Anson.Huang, peng.fan, leonard.crestez, linux-clk,
	linux-arm-kernel, linux-kernel

On 20-10-27 11:57:56, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
> 
> A semicolon is not needed after a switch statement.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

Reviewed-by: Abel Vesa <abel.vesa@nxp.com>

> ---
>  drivers/clk/imx/clk-pll14xx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index aba36e4217d2..2b5ed86b9dbb 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c
> @@ -416,7 +416,7 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
>  		       __func__, name);
>  		kfree(pll);
>  		return ERR_PTR(-EINVAL);
> -	};
> +	}
>  
>  	pll->base = base;
>  	pll->hw.init = &init;
> -- 
> 2.18.1
> 

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

* Re: [PATCH] clk: imx: remove unneeded semicolon
@ 2020-10-27 19:15   ` Abel Vesa
  0 siblings, 0 replies; 6+ messages in thread
From: Abel Vesa @ 2020-10-27 19:15 UTC (permalink / raw)
  To: trix
  Cc: peng.fan, Anson.Huang, sboyd, shawnguo, mturquette, linux-kernel,
	linux-clk, linux-imx, kernel, leonard.crestez, festevam, s.hauer,
	linux-arm-kernel

On 20-10-27 11:57:56, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
> 
> A semicolon is not needed after a switch statement.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

Reviewed-by: Abel Vesa <abel.vesa@nxp.com>

> ---
>  drivers/clk/imx/clk-pll14xx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index aba36e4217d2..2b5ed86b9dbb 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c
> @@ -416,7 +416,7 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
>  		       __func__, name);
>  		kfree(pll);
>  		return ERR_PTR(-EINVAL);
> -	};
> +	}
>  
>  	pll->base = base;
>  	pll->hw.init = &init;
> -- 
> 2.18.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] clk: imx: remove unneeded semicolon
  2020-10-27 18:57 ` trix
@ 2020-11-01  9:19   ` Shawn Guo
  -1 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2020-11-01  9:19 UTC (permalink / raw)
  To: trix
  Cc: mturquette, sboyd, s.hauer, kernel, festevam, linux-imx,
	Anson.Huang, abel.vesa, peng.fan, leonard.crestez, linux-clk,
	linux-arm-kernel, linux-kernel

On Tue, Oct 27, 2020 at 11:57:56AM -0700, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
> 
> A semicolon is not needed after a switch statement.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

Applied, thanks.

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

* Re: [PATCH] clk: imx: remove unneeded semicolon
@ 2020-11-01  9:19   ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2020-11-01  9:19 UTC (permalink / raw)
  To: trix
  Cc: peng.fan, abel.vesa, Anson.Huang, sboyd, mturquette,
	linux-kernel, linux-clk, linux-imx, kernel, leonard.crestez,
	festevam, s.hauer, linux-arm-kernel

On Tue, Oct 27, 2020 at 11:57:56AM -0700, trix@redhat.com wrote:
> From: Tom Rix <trix@redhat.com>
> 
> A semicolon is not needed after a switch statement.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>

Applied, thanks.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-11-01  9:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-27 18:57 [PATCH] clk: imx: remove unneeded semicolon trix
2020-10-27 18:57 ` trix
2020-10-27 19:15 ` Abel Vesa
2020-10-27 19:15   ` Abel Vesa
2020-11-01  9:19 ` Shawn Guo
2020-11-01  9:19   ` Shawn Guo

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.