Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43439
b: refs/heads/master
c: 5f8d17f
h: refs/heads/master
i:
  43437: 3ed1666
  43435: f16ed5d
  43431: c1d287c
  43423: 2320b56
v: v3
  • Loading branch information
Stefan Richter committed Dec 7, 2006
1 parent dc9c946 commit 383c149
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2a3f8ad3a94c784f57958bd692428cb342ce4114
refs/heads/master: 5f8d17f6023ea9aca7c0063c5b472529f2664944
26 changes: 15 additions & 11 deletions trunk/drivers/ieee1394/ohci1394.c
Original file line number Diff line number Diff line change
Expand Up @@ -3537,9 +3537,12 @@ static int ohci1394_pci_suspend(struct pci_dev *pdev, pm_message_t state)
printk(KERN_INFO "%s does not fully support suspend and resume yet\n",
OHCI1394_DRIVER_NAME);

PRINT(KERN_DEBUG, "suspend called");
if (!ohci)
if (!ohci) {
printk(KERN_ERR "%s: tried to suspend nonexisting host\n",
OHCI1394_DRIVER_NAME);
return -ENXIO;
}
DBGMSG("suspend called");

/* Clear the async DMA contexts and stop using the controller */
hpsb_bus_reset(ohci->host);
Expand All @@ -3562,16 +3565,12 @@ static int ohci1394_pci_suspend(struct pci_dev *pdev, pm_message_t state)

err = pci_save_state(pdev);
if (err) {
printk(KERN_ERR "%s: pci_save_state failed with %d\n",
OHCI1394_DRIVER_NAME, err);
PRINT(KERN_ERR, "pci_save_state failed with %d", err);
return err;
}
err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
#ifdef OHCI1394_DEBUG
if (err)
printk(KERN_DEBUG "%s: pci_set_power_state failed with %d\n",
OHCI1394_DRIVER_NAME, err);
#endif /* OHCI1394_DEBUG */
DBGMSG("pci_set_power_state failed with %d", err);

/* PowerMac suspend code comes last */
#ifdef CONFIG_PPC_PMAC
Expand All @@ -3593,9 +3592,12 @@ static int ohci1394_pci_resume(struct pci_dev *pdev)
int err;
struct ti_ohci *ohci = pci_get_drvdata(pdev);

PRINT(KERN_DEBUG, "resume called");
if (!ohci)
if (!ohci) {
printk(KERN_ERR "%s: tried to resume nonexisting host\n",
OHCI1394_DRIVER_NAME);
return -ENXIO;
}
DBGMSG("resume called");

/* PowerMac resume code comes first */
#ifdef CONFIG_PPC_PMAC
Expand All @@ -3612,8 +3614,10 @@ static int ohci1394_pci_resume(struct pci_dev *pdev)
pci_set_power_state(pdev, PCI_D0);
pci_restore_state(pdev);
err = pci_enable_device(pdev);
if (err)
if (err) {
PRINT(KERN_ERR, "pci_enable_device failed with %d", err);
return err;
}

/* See ohci1394_pci_probe() for comments on this sequence */
ohci_soft_reset(ohci);
Expand Down

0 comments on commit 383c149

Please sign in to comment.