summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-06-26 17:49:31 +0200
committerMartin Roth <martinroth@google.com>2019-07-02 16:10:03 +0000
commit1c9bd9ce61391d990839cca12380f2ce11c44bc7 (patch)
tree0d86c66e996009fef45a69bda215f51561c5b4f0
parent328d2e2a7db357e6b7b8aad75cd1a9aea3c11be5 (diff)
downloadcoreboot-1c9bd9ce61391d990839cca12380f2ce11c44bc7.tar.xz
arch/x86: Fix cpu_cpuid_extended_level() return type
`cpuid_eax()` returns an unsigned integer. Change-Id: Iebb6501130bc9ae333d45ae9d2e10c918245a6d1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33814 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r--src/arch/x86/cpu_common.c2
-rw-r--r--src/arch/x86/include/arch/cpu.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/cpu_common.c b/src/arch/x86/cpu_common.c
index 119122786d..0fd0af016f 100644
--- a/src/arch/x86/cpu_common.c
+++ b/src/arch/x86/cpu_common.c
@@ -49,7 +49,7 @@ int cpu_have_cpuid(void)
}
#endif
-int cpu_cpuid_extended_level(void)
+unsigned int cpu_cpuid_extended_level(void)
{
return cpuid_eax(0x80000000);
}
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h
index ff1a33b9ea..75f1f439b8 100644
--- a/src/arch/x86/include/arch/cpu.h
+++ b/src/arch/x86/include/arch/cpu.h
@@ -200,7 +200,7 @@ static inline unsigned int cpuid_edx(unsigned int op)
#define CPUID_CACHE_NO_OF_SETS_MASK 0xffffffff
#define CPUID_CACHE_NO_OF_SETS(res) CPUID_CACHE(NO_OF_SETS, (res).ecx)
-int cpu_cpuid_extended_level(void);
+unsigned int cpu_cpuid_extended_level(void);
int cpu_have_cpuid(void);
void smm_init(void);