Commit 0b522497 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Missing 'return' statement in sun4v_pci_init().

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c2609267
......@@ -916,8 +916,10 @@ void sun4v_pci_init(int node, char *model_name)
&p->pbm_A :
&p->pbm_B);
if (pbm->devhandle == (devhandle ^ 0x40))
if (pbm->devhandle == (devhandle ^ 0x40)) {
pci_sun4v_pbm_init(p, node, devhandle);
return;
}
}
p = kmalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
......@@ -961,7 +963,4 @@ void sun4v_pci_init(int node, char *model_name)
pci_memspace_mask = 0x7fffffffUL;
pci_sun4v_pbm_init(p, node, devhandle);
prom_printf("sun4v_pci_init: Implement me.\n");
prom_halt();
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment