#endif
 };
 
-static int __devinit sc92031_probe(struct pci_dev *pdev,
+static int sc92031_probe(struct pci_dev *pdev,
                const struct pci_device_id *id)
 {
        int err;
        return err;
 }
 
-static void __devexit sc92031_remove(struct pci_dev *pdev)
+static void sc92031_remove(struct pci_dev *pdev)
 {
        struct net_device *dev = pci_get_drvdata(pdev);
        struct sc92031_priv *priv = netdev_priv(dev);
        .name           = SC92031_NAME,
        .id_table       = sc92031_pci_device_id_table,
        .probe          = sc92031_probe,
-       .remove         = __devexit_p(sc92031_remove),
+       .remove         = sc92031_remove,
        .suspend        = sc92031_suspend,
        .resume         = sc92031_resume,
 };