Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 81019
b: refs/heads/master
c: 3b32c16
h: refs/heads/master
i:
  81017: 3f581ec
  81015: 6a2f3d2
v: v3
  • Loading branch information
Stephen Rothwell authored and Paul Mackerras committed Dec 11, 2007
1 parent 38ae471 commit d75d876
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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: 2cd1008cf56371404055fbc7d59f6da060af16fa
refs/heads/master: 3b32c162bb2be2075508cdc2260e6a6853335581
18 changes: 9 additions & 9 deletions trunk/arch/powerpc/platforms/iseries/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ void __init iSeries_pci_final_fixup(void)
for_each_pci_dev(pdev) {
struct pci_dn *pdn;
const u32 *agent;
const u32 *sub_bus;

node = find_device_node(pdev->bus->number, pdev->devfn);
printk("pci dev %p (%x.%x), node %p\n", pdev,
Expand All @@ -202,23 +203,23 @@ void __init iSeries_pci_final_fixup(void)

pdn = PCI_DN(node);
agent = of_get_property(node, "linux,agent-id", NULL);
if (pdn && agent) {
u8 irq = iSeries_allocate_IRQ(pdn->busno, 0,
pdn->bussubno);
sub_bus = of_get_property(node, "linux,subbus", NULL);
if (pdn && agent && sub_bus) {
u8 irq = iSeries_allocate_IRQ(pdn->busno, 0, *sub_bus);
int err;

err = HvCallXm_connectBusUnit(pdn->busno, pdn->bussubno,
err = HvCallXm_connectBusUnit(pdn->busno, *sub_bus,
*agent, irq);
if (err)
pci_log_error("Connect Bus Unit",
pdn->busno, pdn->bussubno, *agent, err);
pdn->busno, *sub_bus, *agent, err);
else {
err = HvCallPci_configStore8(pdn->busno,
pdn->bussubno, *agent,
*sub_bus, *agent,
PCI_INTERRUPT_LINE, irq);
if (err)
pci_log_error("PciCfgStore Irq Failed!",
pdn->busno, pdn->bussubno,
pdn->busno, *sub_bus,
*agent, err);
else
pdev->irq = irq;
Expand All @@ -229,8 +230,7 @@ void __init iSeries_pci_final_fixup(void)
pdev->sysdata = node;
PCI_DN(node)->pcidev = pdev;
allocate_device_bars(pdev);
iSeries_Device_Information(pdev, num_dev, pdn->busno,
pdn->bussubno);
iSeries_Device_Information(pdev, num_dev, pdn->busno, *sub_bus);
iommu_devnode_init_iSeries(pdev, node);
}
iSeries_activate_IRQs();
Expand Down

0 comments on commit d75d876

Please sign in to comment.