diff options
-rw-r--r-- | arch/powerpc/platforms/powermac/feature.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/powermac/feature.c b/arch/powerpc/platforms/powermac/feature.c index f29705f8047d..ba931be2175c 100644 --- a/arch/powerpc/platforms/powermac/feature.c +++ b/arch/powerpc/platforms/powermac/feature.c | |||
@@ -826,13 +826,15 @@ core99_ata100_enable(struct device_node *node, long value) | |||
826 | 826 | ||
827 | if (value) { | 827 | if (value) { |
828 | if (pci_device_from_OF_node(node, &pbus, &pid) == 0) | 828 | if (pci_device_from_OF_node(node, &pbus, &pid) == 0) |
829 | pdev = pci_find_slot(pbus, pid); | 829 | pdev = pci_get_bus_and_slot(pbus, pid); |
830 | if (pdev == NULL) | 830 | if (pdev == NULL) |
831 | return 0; | 831 | return 0; |
832 | rc = pci_enable_device(pdev); | 832 | rc = pci_enable_device(pdev); |
833 | if (rc == 0) | ||
834 | pci_set_master(pdev); | ||
835 | pci_dev_put(pdev); | ||
833 | if (rc) | 836 | if (rc) |
834 | return rc; | 837 | return rc; |
835 | pci_set_master(pdev); | ||
836 | } | 838 | } |
837 | return 0; | 839 | return 0; |
838 | } | 840 | } |