diff --git a/common/autoboot.c b/common/autoboot.c index ee7fae22c8..3407fcd3d5 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 ceae5d07f1..eeb5caf944 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