pci: arm: mvebu: Drop DM_PCI check from arch_early_init_r

We don't need this check anymore since when PCI is enabled, driver model
is always used.

Use CONFIG_PCI instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Correct macro usage)
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass 2021-08-01 18:54:36 -06:00 committed by Tom Rini
parent 63814a6986
commit ebacc78e3e

View File

@ -104,10 +104,9 @@ int arch_early_init_r(void)
/* Cause the SATA device to do its early init */
uclass_first_device(UCLASS_AHCI, &dev);
#ifdef CONFIG_DM_PCI
/* Trigger PCIe devices detection */
pci_init();
#endif
if (IS_ENABLED(CONFIG_PCI))
pci_init();
return 0;
}