diff options
author | Felix Held <felix.held@amd.corp-partner.google.com> | 2021-09-16 22:05:52 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-17 20:28:09 +0000 |
commit | 1fb2e1eb42f60f53286ca2268d1e4442cf17f1a5 (patch) | |
tree | fa84d584bf03b802b7456173666f7ee6d6380df0 /src/cpu/intel/slot_1 | |
parent | 5f12b7b214cb9658fb9d04754fc7d2882b63b4af (diff) |
cpu: add missing arch/cpu.h includes
Including arch/cpu.h is needed to have the declaration for cpuid_eax.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic22aba062117e3afa818fa2fc39cb0738e6a1612
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57725
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/cpu/intel/slot_1')
-rw-r--r-- | src/cpu/intel/slot_1/l2_cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/intel/slot_1/l2_cache.c b/src/cpu/intel/slot_1/l2_cache.c index 57d1fd4af0..2a273168f3 100644 --- a/src/cpu/intel/slot_1/l2_cache.c +++ b/src/cpu/intel/slot_1/l2_cache.c @@ -24,6 +24,7 @@ */ #include <stdint.h> +#include <arch/cpu.h> #include <console/console.h> #include <cpu/intel/l2_cache.h> #include <cpu/x86/cache.h> |