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

ARM: add wfi assembly macro

Since wfi instruction is only available on ARMv7, add a conditional
macro for it.

Signed-off-by: Rob Herring <rob.herring@calxeda.com>
master
Rob Herring 13 years ago committed by Albert ARIBAUD
parent b0404ea126
commit 2ff467c051
  1. 6
      arch/arm/include/asm/system.h

@ -61,6 +61,12 @@
#define nop() __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t");
#ifdef __ARM_ARCH_7A__
#define wfi() __asm__ __volatile__ ("wfi" : : : "memory")
#else
#define wfi()
#endif
static inline unsigned int get_cr(void)
{
unsigned int val;

Loading…
Cancel
Save