diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-11-22 10:35:40 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-11-25 10:42:17 +0000 |
commit | 8928ae380b7a75b4b23b021b706fa77b3e8d4af5 (patch) | |
tree | a0fd657996464084a98ee1a7915b218dd6c4518e /src/arch/ppc64/include | |
parent | e961033ec479d651d21de7c54c990abfc1d7063d (diff) |
arch/{arm,arm64,ppc64,riscv}: Add noop cpu_relax
The cpu_relax method is defined for x86. This CL adds a no-op method so
that it can be used in common code.
BUG=b:179699789
TEST=none
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Ifcb4546ceb2894eeb37589d0282b7e076d7a4747
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59546
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/arch/ppc64/include')
-rw-r--r-- | src/arch/ppc64/include/arch/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/ppc64/include/arch/cpu.h b/src/arch/ppc64/include/arch/cpu.h index 5e5ba30ab5..638406d640 100644 --- a/src/arch/ppc64/include/arch/cpu.h +++ b/src/arch/ppc64/include/arch/cpu.h @@ -5,6 +5,8 @@ #include <device/device.h> +static inline void cpu_relax(void) { } + #define asmlinkage struct cpu_driver { |