From: "Éric Brunet" <Eric.Brunet@lps.ens.fr>
To: Paul Gortmaker <p_gortmaker@yahoo.com>
Cc: linux-kernel@vger.kernel.org
Subject: PATCH (RESENT) swsuspend for ne2k-pci cards
Date: Wed, 1 Sep 2004 16:56:38 +0200 [thread overview]
Message-ID: <20040901145638.GA9993@lps.ens.fr> (raw)
In-Reply-To: <20040821121430.GB8826@lps.ens.fr>
Hi,
This is a resent of my patch to add suspend/resume support to ne2k-pci
network adapters.
* The patch was tested on a RealTek ne2k clone and works nicely,
* It was reviewed and largely improved by Arkadiusz Miskiewicz
* It was approved of by Pavel Machek, the software suspend maintainer.
It would be nice if this patch could go into the kernel.
Thank you,
Éric Brunet
--- linux-old/drivers/net/ne2k-pci.c 2004-08-07 15:54:24.000000000 +0200
+++ linux-2.6.8-rc1/drivers/net/ne2k-pci.c 2004-08-21 12:24:27.000000000 +0200
@@ -653,12 +653,43 @@
pci_set_drvdata(pdev, NULL);
}
+#ifdef CONFIG_PM
+static int ne2k_pci_suspend (struct pci_dev *pdev, u32 state)
+{
+ struct net_device *dev = pci_get_drvdata (pdev);
+
+ netif_device_detach(dev);
+ pci_save_state(pdev, pdev->saved_config_space);
+ pci_set_power_state(pdev, state);
+
+ return 0;
+}
+
+static int ne2k_pci_resume (struct pci_dev *pdev)
+{
+ struct net_device *dev = pci_get_drvdata (pdev);
+
+ pci_set_power_state(pdev, 0);
+ pci_restore_state(pdev, pdev->saved_config_space);
+ NS8390_init(dev, 1);
+ netif_device_attach(dev);
+
+ return 0;
+}
+
+#endif /* CONFIG_PM */
+
static struct pci_driver ne2k_driver = {
.name = DRV_NAME,
.probe = ne2k_pci_init_one,
.remove = __devexit_p(ne2k_pci_remove_one),
.id_table = ne2k_pci_tbl,
+#ifdef CONFIG_PM
+ .suspend = ne2k_pci_suspend,
+ .resume = ne2k_pci_resume,
+#endif /* CONFIG_PM */
+
};
next prev parent reply other threads:[~2004-09-01 14:57 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20040715121042.GB9873@lps.ens.fr.suse.lists.linux.kernel>
2004-07-15 12:10 ` swsuspend not working Éric Brunet
2004-07-15 12:18 ` Pavel Machek
2004-07-15 13:23 ` Éric Brunet
2004-07-15 13:21 ` Nigel Cunningham
2004-07-19 19:19 ` Éric Brunet
2004-07-20 13:17 ` Pavel Machek
2004-07-20 15:50 ` Romano Giannetti
2004-07-31 18:20 ` Éric Brunet
2004-08-06 19:06 ` Pavel Machek
2004-08-06 23:54 ` Éric Brunet
2004-08-07 7:13 ` Paul Gortmaker
[not found] ` <20040807140845.GA8353@lps.ens.fr>
2004-08-21 12:14 ` PATCH swsuspend for ne2k-pci cards Éric Brunet
2004-08-23 19:51 ` Pavel Machek
2004-09-01 14:56 ` Éric Brunet [this message]
2004-07-15 12:47 ` swsuspend not working Stefan Seyfried
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040901145638.GA9993@lps.ens.fr \
--to=eric.brunet@lps.ens.fr \
--cc=linux-kernel@vger.kernel.org \
--cc=p_gortmaker@yahoo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.