From: Jens Axboe Date: Tue, 5 Jun 2018 19:18:02 +0000 (-0600) Subject: x86: don't need 'level' passed to amd/intel init functions X-Git-Tag: fio-3.8~46 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=ce8926092dcb3022bf658bccc3a247530c3ea500;hp=46960d0d3a4b36f7fb2ee1f356563aa367a27082 x86: don't need 'level' passed to amd/intel init functions Signed-off-by: Jens Axboe --- diff --git a/arch/arch-x86-common.h b/arch/arch-x86-common.h index c51c04c2..5140f238 100644 --- a/arch/arch-x86-common.h +++ b/arch/arch-x86-common.h @@ -17,7 +17,7 @@ static inline void cpuid(unsigned int op, extern bool tsc_reliable; extern int arch_random; -static inline void arch_init_intel(unsigned int level) +static inline void arch_init_intel(void) { unsigned int eax, ebx, ecx = 0, edx; @@ -44,7 +44,7 @@ static inline void arch_init_intel(unsigned int level) arch_random = (ecx & (1U << 30)) != 0; } -static inline void arch_init_amd(unsigned int level) +static inline void arch_init_amd(void) { unsigned int eax, ebx, ecx, edx; @@ -69,9 +69,9 @@ static inline void arch_init(char *envp[]) str[12] = '\0'; if (!strcmp(str, "GenuineIntel")) - arch_init_intel(level); + arch_init_intel(); else if (!strcmp(str, "AuthenticAMD")) - arch_init_amd(level); + arch_init_amd(); } #endif