* [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare
@ 2011-11-10 5:01 Richard Zhao
2011-11-12 1:43 ` David Miller
2011-11-12 12:49 ` Uwe Kleine-König
0 siblings, 2 replies; 5+ messages in thread
From: Richard Zhao @ 2011-11-10 5:01 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
---
drivers/net/ethernet/freescale/fec.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
index 1124ce0..92e3585 100644
--- a/drivers/net/ethernet/freescale/fec.c
+++ b/drivers/net/ethernet/freescale/fec.c
@@ -1588,6 +1588,7 @@ fec_probe(struct platform_device *pdev)
ret = PTR_ERR(fep->clk);
goto failed_clk;
}
+ clk_prepare(fep->clk);
clk_enable(fep->clk);
ret = fec_enet_init(ndev);
@@ -1612,6 +1613,7 @@ failed_register:
failed_mii_init:
failed_init:
clk_disable(fep->clk);
+ clk_unprepare(fep->clk);
clk_put(fep->clk);
failed_clk:
for (i = 0; i < FEC_IRQ_NUM; i++) {
@@ -1639,6 +1641,7 @@ fec_drv_remove(struct platform_device *pdev)
fec_stop(ndev);
fec_enet_mii_remove(fep);
clk_disable(fep->clk);
+ clk_unprepare(fep->clk);
clk_put(fep->clk);
iounmap(fep->hwp);
unregister_netdev(ndev);
@@ -1665,6 +1668,7 @@ fec_suspend(struct device *dev)
netif_device_detach(ndev);
}
clk_disable(fep->clk);
+ clk_unprepare(fep->clk);
return 0;
}
@@ -1675,6 +1679,7 @@ fec_resume(struct device *dev)
struct net_device *ndev = dev_get_drvdata(dev);
struct fec_enet_private *fep = netdev_priv(ndev);
+ clk_prepare(fep->clk);
clk_enable(fep->clk);
if (netif_running(ndev)) {
fec_restart(ndev, fep->full_duplex);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare
2011-11-10 5:01 [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare Richard Zhao
@ 2011-11-12 1:43 ` David Miller
2011-11-13 3:30 ` Richard Zhao
2011-11-12 12:49 ` Uwe Kleine-König
1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2011-11-12 1:43 UTC (permalink / raw)
To: linux-arm-kernel
From: Richard Zhao <richard.zhao@linaro.org>
Date: Thu, 10 Nov 2011 13:01:44 +0800
> Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
You're going to have to provide a more reasonable commit message.
Unless it's a typo fix or similar you need to explain your change
and why it's necessary.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare
2011-11-10 5:01 [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare Richard Zhao
2011-11-12 1:43 ` David Miller
@ 2011-11-12 12:49 ` Uwe Kleine-König
2011-11-13 3:34 ` Richard Zhao
1 sibling, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2011-11-12 12:49 UTC (permalink / raw)
To: linux-arm-kernel
Hello Richard,
On Thu, Nov 10, 2011 at 01:01:44PM +0800, Richard Zhao wrote:
> Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
> ---
> drivers/net/ethernet/freescale/fec.c | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
> index 1124ce0..92e3585 100644
> --- a/drivers/net/ethernet/freescale/fec.c
> +++ b/drivers/net/ethernet/freescale/fec.c
> @@ -1588,6 +1588,7 @@ fec_probe(struct platform_device *pdev)
> ret = PTR_ERR(fep->clk);
> goto failed_clk;
> }
> + clk_prepare(fep->clk);
What about error checking?
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare
2011-11-12 1:43 ` David Miller
@ 2011-11-13 3:30 ` Richard Zhao
0 siblings, 0 replies; 5+ messages in thread
From: Richard Zhao @ 2011-11-13 3:30 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Nov 11, 2011 at 08:43:26PM -0500, David Miller wrote:
> From: Richard Zhao <richard.zhao@linaro.org>
> Date: Thu, 10 Nov 2011 13:01:44 +0800
>
> > Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
>
> You're going to have to provide a more reasonable commit message.
>
> Unless it's a typo fix or similar you need to explain your change
> and why it's necessary.
It's for migrating to generic clock framework.
Is it ok if I add above to commit message?
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare
2011-11-12 12:49 ` Uwe Kleine-König
@ 2011-11-13 3:34 ` Richard Zhao
0 siblings, 0 replies; 5+ messages in thread
From: Richard Zhao @ 2011-11-13 3:34 UTC (permalink / raw)
To: linux-arm-kernel
Hi Uwe,
On Sat, Nov 12, 2011 at 01:49:39PM +0100, Uwe Kleine-K?nig wrote:
> Hello Richard,
>
> On Thu, Nov 10, 2011 at 01:01:44PM +0800, Richard Zhao wrote:
> > Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
> > ---
> > drivers/net/ethernet/freescale/fec.c | 5 +++++
> > 1 files changed, 5 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
> > index 1124ce0..92e3585 100644
> > --- a/drivers/net/ethernet/freescale/fec.c
> > +++ b/drivers/net/ethernet/freescale/fec.c
> > @@ -1588,6 +1588,7 @@ fec_probe(struct platform_device *pdev)
> > ret = PTR_ERR(fep->clk);
> > goto failed_clk;
> > }
> > + clk_prepare(fep->clk);
> What about error checking?
The goal of the patch is migrating to the new generic clock framework.
If the original driver has error check of clk_enable, I also added error check of
clk_prepare. And I've sent out new version patch, which use clk_prepare_enable.
Richard
>
> Best regards
> Uwe
>
> --
> Pengutronix e.K. | Uwe Kleine-K?nig |
> Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-11-13 3:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-10 5:01 [PATCH 1/1] net: fec: convert to clk_prepare/clk_unprepare Richard Zhao
2011-11-12 1:43 ` David Miller
2011-11-13 3:30 ` Richard Zhao
2011-11-12 12:49 ` Uwe Kleine-König
2011-11-13 3:34 ` Richard Zhao
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).