Skip to content

Commit

Permalink
microblaze: pci_controller->arch_data really is a struct device_node *
Browse files Browse the repository at this point in the history
we are follow powerpc change:
44ef339

Signed-off-by: Michal Simek <[email protected]>
  • Loading branch information
michalsimek committed Jan 18, 2010
1 parent 296e260 commit 878194c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/microblaze/kernel/prom_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq)
if (ppdev == NULL) {
struct pci_controller *host;
host = pci_bus_to_host(pdev->bus);
ppnode = host ? host->arch_data : NULL;
ppnode = host ? host->dn : NULL;
/* No node for host bridge ? give up */
if (ppnode == NULL)
return -EINVAL;
Expand Down

0 comments on commit 878194c

Please sign in to comment.