linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: imx: Remove unused function statement
@ 2019-07-24  6:24 Anson.Huang
  2019-07-24  7:05 ` Uwe Kleine-König
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Anson.Huang @ 2019-07-24  6:24 UTC (permalink / raw)
  To: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	abel.vesa, aisheng.dong, l.stach, ping.bai, linux-clk,
	linux-arm-kernel, linux-kernel
  Cc: Linux-imx

From: Anson Huang <Anson.Huang@nxp.com>

imx_register_uart_clocks_hws() function is NOT implemented
at all, remove it.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/clk/imx/clk.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
index 9995f2a..f7a389a 100644
--- a/drivers/clk/imx/clk.h
+++ b/drivers/clk/imx/clk.h
@@ -10,7 +10,6 @@ extern spinlock_t imx_ccm_lock;
 void imx_check_clocks(struct clk *clks[], unsigned int count);
 void imx_check_clk_hws(struct clk_hw *clks[], unsigned int count);
 void imx_register_uart_clocks(struct clk ** const clks[]);
-void imx_register_uart_clocks_hws(struct clk_hw ** const hws[]);
 void imx_mmdc_mask_handshake(void __iomem *ccm_base, unsigned int chn);
 void imx_unregister_clocks(struct clk *clks[], unsigned int count);
 
-- 
2.7.4


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

* Re: [PATCH] clk: imx: Remove unused function statement
  2019-07-24  6:24 [PATCH] clk: imx: Remove unused function statement Anson.Huang
@ 2019-07-24  7:05 ` Uwe Kleine-König
  2019-07-26  8:37 ` Abel Vesa
  2019-08-03  8:58 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2019-07-24  7:05 UTC (permalink / raw)
  To: Anson.Huang
  Cc: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	abel.vesa, aisheng.dong, l.stach, ping.bai, linux-clk,
	linux-arm-kernel, linux-kernel, Linux-imx

Hello,

On Wed, Jul 24, 2019 at 02:24:35PM +0800, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
> 
> imx_register_uart_clocks_hws() function is NOT implemented
> at all, remove it.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>

Looks right. This function never existed, the prototype was introduced
in commit dd1a6c0d339b ("clk: imx: clk-busy: Switch to clk_hw based
API") in the 5.3-rc1 cycle.

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] clk: imx: Remove unused function statement
  2019-07-24  6:24 [PATCH] clk: imx: Remove unused function statement Anson.Huang
  2019-07-24  7:05 ` Uwe Kleine-König
@ 2019-07-26  8:37 ` Abel Vesa
  2019-08-03  8:58 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Abel Vesa @ 2019-07-26  8:37 UTC (permalink / raw)
  To: Anson.Huang
  Cc: mturquette, sboyd, shawnguo, s.hauer, kernel, festevam,
	aisheng.dong, l.stach, ping.bai, linux-clk, linux-arm-kernel,
	linux-kernel, Linux-imx

On 19-07-24 14:24:35, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
> 
> imx_register_uart_clocks_hws() function is NOT implemented
> at all, remove it.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>

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

> ---
>  drivers/clk/imx/clk.h | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
> index 9995f2a..f7a389a 100644
> --- a/drivers/clk/imx/clk.h
> +++ b/drivers/clk/imx/clk.h
> @@ -10,7 +10,6 @@ extern spinlock_t imx_ccm_lock;
>  void imx_check_clocks(struct clk *clks[], unsigned int count);
>  void imx_check_clk_hws(struct clk_hw *clks[], unsigned int count);
>  void imx_register_uart_clocks(struct clk ** const clks[]);
> -void imx_register_uart_clocks_hws(struct clk_hw ** const hws[]);
>  void imx_mmdc_mask_handshake(void __iomem *ccm_base, unsigned int chn);
>  void imx_unregister_clocks(struct clk *clks[], unsigned int count);
>  
> -- 
> 2.7.4
> 

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

* Re: [PATCH] clk: imx: Remove unused function statement
  2019-07-24  6:24 [PATCH] clk: imx: Remove unused function statement Anson.Huang
  2019-07-24  7:05 ` Uwe Kleine-König
  2019-07-26  8:37 ` Abel Vesa
@ 2019-08-03  8:58 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2019-08-03  8:58 UTC (permalink / raw)
  To: Anson.Huang
  Cc: mturquette, sboyd, s.hauer, kernel, festevam, abel.vesa,
	aisheng.dong, l.stach, ping.bai, linux-clk, linux-arm-kernel,
	linux-kernel, Linux-imx

On Wed, Jul 24, 2019 at 02:24:35PM +0800, Anson.Huang@nxp.com wrote:
> From: Anson Huang <Anson.Huang@nxp.com>
> 
> imx_register_uart_clocks_hws() function is NOT implemented
> at all, remove it.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>

Applied, thanks.

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

end of thread, other threads:[~2019-08-03  8:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-24  6:24 [PATCH] clk: imx: Remove unused function statement Anson.Huang
2019-07-24  7:05 ` Uwe Kleine-König
2019-07-26  8:37 ` Abel Vesa
2019-08-03  8:58 ` Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).