Merge "ipq9574: Skip PCIe enumeration during the board_init"

This commit is contained in:
Linux Build Service Account 2023-11-24 00:12:35 -08:00 committed by Gerrit - the friendly Code Review server
commit dee2f639bb
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

@ -251,7 +251,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