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

ppc4xx: Fix missing freqOPB for 405EP

In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
left out for no obvious reason.

Signed-off-by: Dirk Eibach <eibach@gdsys.de>
Signed-off-by: Stefan Roese <sr@denx.de>
master
Dirk Eibach 16 years ago committed by Stefan Roese
parent 0a371ca089
commit 9b1b8c8a1b
  1. 2
      cpu/ppc4xx/speed.c

@ -867,6 +867,8 @@ void get_sys_info (PPC4xx_SYS_INFO * sysInfo)
sysInfo->freqEBC = sysInfo->freqPLB / sysInfo->pllExtBusDiv;
sysInfo->freqOPB = sysInfo->freqPLB / sysInfo->pllOpbDiv;
sysInfo->freqUART = sysInfo->freqProcessor * pllmr0_ccdv;
}

Loading…
Cancel
Save