static int ahc_linux_pci_dev_resume(struct pci_dev *pdev) { struct ahc_softc *ahc = pci_get_drvdata(pdev); int rc; pci_set_power_state(pdev, PCI_D0); pci_restore_state(pdev); if ((rc = pci_enable_device(pdev))) { dev_printk(KERN_ERR, &pdev->dev, "failed to enable device after resume (%d)\n", rc); return rc; } pci_set_master(pdev); ahc_pci_resume(ahc); return (ahc_resume(ahc)); }
static int aic7770_resume(struct ahc_softc *ahc) { return (ahc_resume(ahc)); }