Skip to content

Commit 76f3510

Browse files
aikmpe
authored andcommitted
powerpc/pci_64: Init pcibios subsys a bit later
Subsequent patches are going to add dependency/use of iommu_ops which is initialized in subsys_initcall as well. This moves pciobios_init() to the next initcall level. This should not cause behavioral change. Signed-off-by: Alexey Kardashevskiy <[email protected]> Signed-off-by: Timothy Pearson <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://msgid.link/12303156.16998521.1678123842049.JavaMail.zimbra@raptorengineeringinc.com
1 parent 9d67c94 commit 76f3510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/powerpc/kernel/pci_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static int __init pcibios_init(void)
7373
return 0;
7474
}
7575

76-
subsys_initcall(pcibios_init);
76+
subsys_initcall_sync(pcibios_init);
7777

7878
int pcibios_unmap_io_space(struct pci_bus *bus)
7979
{

0 commit comments

Comments
 (0)