* [PATCH] phy: Add suspend/resume support to SMSC PHYs
@ 2009-01-20 13:43 Steve Glendinning
2009-01-20 22:05 ` Andy Fleming
2009-01-22 0:05 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: Steve Glendinning @ 2009-01-20 13:43 UTC (permalink / raw)
To: netdev; +Cc: David Miller, Ian Saturley, Steve Glendinning
All supported SMSC PHYs implement the standard "power down" bit 11 of
BMCR, so this patch adds support using the generic genphy_{suspend,resume}
functions.
Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
---
drivers/net/phy/smsc.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c
index c05d38d..185dcd9 100644
--- a/drivers/net/phy/smsc.c
+++ b/drivers/net/phy/smsc.c
@@ -81,6 +81,9 @@ static struct phy_driver lan83c185_driver = {
.ack_interrupt = smsc_phy_ack_interrupt,
.config_intr = smsc_phy_config_intr,
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
+
.driver = { .owner = THIS_MODULE, }
};
@@ -102,6 +105,9 @@ static struct phy_driver lan8187_driver = {
.ack_interrupt = smsc_phy_ack_interrupt,
.config_intr = smsc_phy_config_intr,
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
+
.driver = { .owner = THIS_MODULE, }
};
@@ -123,6 +129,9 @@ static struct phy_driver lan8700_driver = {
.ack_interrupt = smsc_phy_ack_interrupt,
.config_intr = smsc_phy_config_intr,
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
+
.driver = { .owner = THIS_MODULE, }
};
@@ -144,6 +153,9 @@ static struct phy_driver lan911x_int_driver = {
.ack_interrupt = smsc_phy_ack_interrupt,
.config_intr = smsc_phy_config_intr,
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
+
.driver = { .owner = THIS_MODULE, }
};
--
1.6.0.6
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] phy: Add suspend/resume support to SMSC PHYs
2009-01-20 13:43 [PATCH] phy: Add suspend/resume support to SMSC PHYs Steve Glendinning
@ 2009-01-20 22:05 ` Andy Fleming
2009-01-22 0:05 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: Andy Fleming @ 2009-01-20 22:05 UTC (permalink / raw)
To: Steve Glendinning; +Cc: netdev, David Miller, Ian Saturley
On Tue, Jan 20, 2009 at 7:43 AM, Steve Glendinning
<steve.glendinning@smsc.com> wrote:
> All supported SMSC PHYs implement the standard "power down" bit 11 of
> BMCR, so this patch adds support using the generic genphy_{suspend,resume}
> functions.
>
> Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
Acked-by: Andy Fleming <afleming@freescale.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] phy: Add suspend/resume support to SMSC PHYs
2009-01-20 13:43 [PATCH] phy: Add suspend/resume support to SMSC PHYs Steve Glendinning
2009-01-20 22:05 ` Andy Fleming
@ 2009-01-22 0:05 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2009-01-22 0:05 UTC (permalink / raw)
To: steve.glendinning; +Cc: netdev, ian.saturley
From: Steve Glendinning <steve.glendinning@smsc.com>
Date: Tue, 20 Jan 2009 13:43:58 +0000
> diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c
> index c05d38d..185dcd9 100644
> --- a/drivers/net/phy/smsc.c
> +++ b/drivers/net/phy/smsc.c
> @@ -81,6 +81,9 @@ static struct phy_driver lan83c185_driver = {
> .ack_interrupt = smsc_phy_ack_interrupt,
> .config_intr = smsc_phy_config_intr,
>
> + .suspend = genphy_suspend,
> + .resume = genphy_resume,
> +
Please use tabs, not spaces, here.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-01-22 0:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-20 13:43 [PATCH] phy: Add suspend/resume support to SMSC PHYs Steve Glendinning
2009-01-20 22:05 ` Andy Fleming
2009-01-22 0:05 ` David Miller
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).