diff options
author | Robert Hancock <hancockr@shaw.ca> | 2007-02-05 19:26:04 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:40 -0500 |
commit | ce053fa8b532aa038fba6230052daae5cd60eae6 (patch) | |
tree | 79fd15871c469fb199e1e0c74ed1f8996b902b1c /drivers | |
parent | a2cfe81a59eea45a3f9afb4f652f7619982eac62 (diff) |
sata_nv: propagate ata_pci_device_do_resume return value
ata_pci_device_do_resume can fail if the PCI device couldn't be re-enabled.
Update sata_nv to propagate the return value from this call and to not try
to do any other resume activities if it fails. Fixes a compile warning.
Signed-off-by: Robert Hancock <hancockr@shaw.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ata/sata_nv.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/ata/sata_nv.c b/drivers/ata/sata_nv.c index aea005d5663c..095ef1b2cd0e 100644 --- a/drivers/ata/sata_nv.c +++ b/drivers/ata/sata_nv.c | |||
@@ -1575,8 +1575,11 @@ static int nv_pci_device_resume(struct pci_dev *pdev) | |||
1575 | { | 1575 | { |
1576 | struct ata_host *host = dev_get_drvdata(&pdev->dev); | 1576 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
1577 | struct nv_host_priv *hpriv = host->private_data; | 1577 | struct nv_host_priv *hpriv = host->private_data; |
1578 | int rc; | ||
1578 | 1579 | ||
1579 | ata_pci_device_do_resume(pdev); | 1580 | rc = ata_pci_device_do_resume(pdev); |
1581 | if(rc) | ||
1582 | return rc; | ||
1580 | 1583 | ||
1581 | if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) { | 1584 | if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) { |
1582 | if(hpriv->type >= CK804) { | 1585 | if(hpriv->type >= CK804) { |