Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/090290f97b90eff1fe190d89ef0d976729cda13e You should set ROOT_URL correctly, otherwise the web may not work correctly.

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>
master
Bin Meng 10 years ago committed by Simon Glass
parent 48aa6c2614
commit 090290f97b
  1. 4
      arch/x86/cpu/queensbay/tnc.c

@ -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…
Cancel
Save