diff options
Diffstat (limited to 'drivers/ieee1394/ohci1394.c')
-rw-r--r-- | drivers/ieee1394/ohci1394.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/ieee1394/ohci1394.c b/drivers/ieee1394/ohci1394.c index ea14c831ff41..9890ab73bb5f 100644 --- a/drivers/ieee1394/ohci1394.c +++ b/drivers/ieee1394/ohci1394.c | |||
@@ -3530,7 +3530,7 @@ static void ohci1394_pci_remove(struct pci_dev *pdev) | |||
3530 | put_device(dev); | 3530 | put_device(dev); |
3531 | } | 3531 | } |
3532 | 3532 | ||
3533 | 3533 | #ifdef CONFIG_PM | |
3534 | static int ohci1394_pci_resume (struct pci_dev *pdev) | 3534 | static int ohci1394_pci_resume (struct pci_dev *pdev) |
3535 | { | 3535 | { |
3536 | #ifdef CONFIG_PPC_PMAC | 3536 | #ifdef CONFIG_PPC_PMAC |
@@ -3568,7 +3568,7 @@ static int ohci1394_pci_suspend (struct pci_dev *pdev, pm_message_t state) | |||
3568 | 3568 | ||
3569 | return 0; | 3569 | return 0; |
3570 | } | 3570 | } |
3571 | 3571 | #endif | |
3572 | 3572 | ||
3573 | #define PCI_CLASS_FIREWIRE_OHCI ((PCI_CLASS_SERIAL_FIREWIRE << 8) | 0x10) | 3573 | #define PCI_CLASS_FIREWIRE_OHCI ((PCI_CLASS_SERIAL_FIREWIRE << 8) | 0x10) |
3574 | 3574 | ||
@@ -3591,8 +3591,10 @@ static struct pci_driver ohci1394_pci_driver = { | |||
3591 | .id_table = ohci1394_pci_tbl, | 3591 | .id_table = ohci1394_pci_tbl, |
3592 | .probe = ohci1394_pci_probe, | 3592 | .probe = ohci1394_pci_probe, |
3593 | .remove = ohci1394_pci_remove, | 3593 | .remove = ohci1394_pci_remove, |
3594 | #ifdef CONFIG_PM | ||
3594 | .resume = ohci1394_pci_resume, | 3595 | .resume = ohci1394_pci_resume, |
3595 | .suspend = ohci1394_pci_suspend, | 3596 | .suspend = ohci1394_pci_suspend, |
3597 | #endif | ||
3596 | }; | 3598 | }; |
3597 | 3599 | ||
3598 | /*********************************** | 3600 | /*********************************** |