[U-Boot] [PATCH 8/8] x86: queensbay: Call fsp_init_phase_pci() again
Bin Meng
bmeng.cn at gmail.com
Sat Aug 15 09:07:50 CEST 2015
With driver model pci conversion, the call to FspNotify was dropped.
Now add this call back as this is required by the FSP spec.
Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---
arch/x86/cpu/queensbay/tnc.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/arch/x86/cpu/queensbay/tnc.c b/arch/x86/cpu/queensbay/tnc.c
index c465642..11f65ad 100644
--- a/arch/x86/cpu/queensbay/tnc.c
+++ b/arch/x86/cpu/queensbay/tnc.c
@@ -80,5 +80,11 @@ void cpu_irq_init(void)
int arch_misc_init(void)
{
- return pirq_init();
+ int ret;
+
+ ret = pirq_init();
+ if (ret)
+ return ret;
+
+ return fsp_init_phase_pci();
}
--
1.8.2.1
More information about the U-Boot
mailing list