diff options
author | Giuseppe Cavallaro <peppe.cavallaro@st.com> | 2010-11-28 21:10:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-28 21:10:53 -0500 |
commit | 5e9559689735f760f3a1fb9b2aafeb4d8efbf8f5 (patch) | |
tree | d951984c06fd439ae18e90cacd8c61f602b4a383 /drivers/net/stmmac/stmmac_main.c | |
parent | de855b992d75e49816eb09231764e7a63a4f555d (diff) |
stmmac: fix stmmac_resume removing not yet used shutdown flag
The commit to convert to use the dev_pm_ops struct
introduces a bug. The shutdown flag is not yet used
because the hibernation on memory is done by using
the freeze callback.
Thanks to Vlad for having reported it.
Reported-by: Vlad Lungu <vlad.lungu@windriver.com>
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/stmmac/stmmac_main.c')
-rw-r--r-- | drivers/net/stmmac/stmmac_main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index f1dbc182c8df..730a6fd79ee0 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c | |||
@@ -1846,13 +1846,6 @@ static int stmmac_resume(struct device *dev) | |||
1846 | if (!netif_running(ndev)) | 1846 | if (!netif_running(ndev)) |
1847 | return 0; | 1847 | return 0; |
1848 | 1848 | ||
1849 | if (priv->shutdown) { | ||
1850 | /* Re-open the interface and re-init the MAC/DMA | ||
1851 | and the rings (i.e. on hibernation stage) */ | ||
1852 | stmmac_open(dev); | ||
1853 | return 0; | ||
1854 | } | ||
1855 | |||
1856 | spin_lock(&priv->lock); | 1849 | spin_lock(&priv->lock); |
1857 | 1850 | ||
1858 | /* Power Down bit, into the PM register, is cleared | 1851 | /* Power Down bit, into the PM register, is cleared |