microblaze: pci_controller->arch_data really is a struct device_node *

we are follow powerpc change:
44ef339073

Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
Michal Simek 2010-01-13 15:29:52 +01:00
parent 296e2603cf
commit 878194c823
1 changed files with 1 additions and 1 deletions

View File

@ -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;