diff options
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/rauru/romstage.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/rauru/romstage.c b/src/mainboard/google/rauru/romstage.c index 7ee8759f75..98e8cd9dba 100644 --- a/src/mainboard/google/rauru/romstage.c +++ b/src/mainboard/google/rauru/romstage.c @@ -1,11 +1,12 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <arch/stages.h> +#include <soc/irq2axi.h> #include <soc/pcie.h> void platform_romstage_main(void) { - /* TODO: add romstage main function */ + irq2axi_disable(); if (CONFIG(PCI)) mtk_pcie_deassert_perst(); |