aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2008-03-01 06:34:50 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2008-04-18 11:55:33 -0400
commiteb5ca72effaa7f691f7df5187c5c5d1268311326 (patch)
treee48be32b2a64ddfef8453822be7b7316c25260b4 /drivers/firewire
parent080de8c2c57e3199eee837fe8b6d35a43679f8c1 (diff)
firewire: fw-ohci: switch on bus power after resume on PPC PMac
The platform feature calls in the suspend method switched off cable power, but the calls in the resume method did not switch it back on. Add the necessary feature call to .resume. Also add the corresponding call to .suspend to make .suspend's behavior explicitly the same on all PMacs. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r--drivers/firewire/fw-ohci.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c
index 5da7c6715e1e..312182d6d970 100644
--- a/drivers/firewire/fw-ohci.c
+++ b/drivers/firewire/fw-ohci.c
@@ -2251,8 +2251,10 @@ static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
2251 if (machine_is(powermac)) { 2251 if (machine_is(powermac)) {
2252 struct device_node *ofn = pci_device_to_OF_node(pdev); 2252 struct device_node *ofn = pci_device_to_OF_node(pdev);
2253 2253
2254 if (ofn) 2254 if (ofn) {
2255 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0); 2255 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
2256 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
2257 }
2256 } 2258 }
2257#endif /* CONFIG_PPC_PMAC */ 2259#endif /* CONFIG_PPC_PMAC */
2258 2260
@@ -2269,8 +2271,10 @@ static int pci_resume(struct pci_dev *pdev)
2269 if (machine_is(powermac)) { 2271 if (machine_is(powermac)) {
2270 struct device_node *ofn = pci_device_to_OF_node(pdev); 2272 struct device_node *ofn = pci_device_to_OF_node(pdev);
2271 2273
2272 if (ofn) 2274 if (ofn) {
2275 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
2273 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1); 2276 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
2277 }
2274 } 2278 }
2275#endif /* CONFIG_PPC_PMAC */ 2279#endif /* CONFIG_PPC_PMAC */
2276 2280