vserver 1.9.5.x5
[linux-2.6.git] / drivers / net / ne2k-pci.c
index ed15b19..7d43a87 100644 (file)
@@ -77,9 +77,9 @@ MODULE_AUTHOR("Donald Becker / Paul Gortmaker");
 MODULE_DESCRIPTION("PCI NE2000 clone driver");
 MODULE_LICENSE("GPL");
 
-MODULE_PARM(debug, "i");
-MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
-MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
+module_param(debug, int, 0);
+module_param_array(options, int, NULL, 0);
+module_param_array(full_duplex, int, NULL, 0);
 MODULE_PARM_DESC(debug, "debug level (1-2)");
 MODULE_PARM_DESC(options, "Bit 5: full duplex");
 MODULE_PARM_DESC(full_duplex, "full duplex setting(s) (1)");
@@ -653,12 +653,43 @@ static void __devexit ne2k_pci_remove_one (struct pci_dev *pdev)
        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);
+       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);
+       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 */
+
 };