x86: queensbay: Move unprotect_spi_flash() to arch_misc_init()
With dm pci conversion, pci config read/write in unprotect_spi_flash() silently fails as at that time dm pci is not ready and bus enumeration is not done yet. Actually we don't need to do this in that early phase, hence we delay this call to arch_misc_init(). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
48aa6c2614
commit
090290f97b
@ -36,8 +36,6 @@ int arch_cpu_init(void)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
unprotect_spi_flash();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -80,5 +78,7 @@ void cpu_irq_init(void)
|
||||
|
||||
int arch_misc_init(void)
|
||||
{
|
||||
unprotect_spi_flash();
|
||||
|
||||
return pirq_init();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user