Merge "ipq9574: Skip PCIe enumeration during the board_init"

This commit is contained in:
Linux Build Service Account 2023-11-09 00:40:47 -08:00 committed by Gerrit - the friendly Code Review server
commit ade4f74181
2 changed files with 4 additions and 1 deletions

View file

@ -429,4 +429,7 @@ void autoboot_command(const char *s)
puts("\nNet: ");
eth_initialize();
#endif
#if defined(CONFIG_IPQ9574)
pci_init();
#endif
}

View file

@ -249,7 +249,7 @@ static int initr_unlock_ram_in_cache(void)
#ifdef CONFIG_PCI
static int initr_pci(void)
{
#ifndef CONFIG_DM_PCI
#if !defined(CONFIG_DM_PCI) && !defined(CONFIG_IPQ9574)
pci_init();
#endif