diff --git a/common/autoboot.c b/common/autoboot.c index 96d2a841cc..ea02c04cba 100644 --- a/common/autoboot.c +++ b/common/autoboot.c @@ -429,4 +429,7 @@ void autoboot_command(const char *s) puts("\nNet: "); eth_initialize(); #endif +#if defined(CONFIG_IPQ9574) + pci_init(); +#endif } diff --git a/common/board_r.c b/common/board_r.c index 44ac8ed6be..5887ea16ca 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -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