diff options
Diffstat (limited to 'arch/x86/include/asm/virtext.h')
| -rw-r--r-- | arch/x86/include/asm/virtext.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/x86/include/asm/virtext.h b/arch/x86/include/asm/virtext.h index 0116b2ee9e64..e05e0d309244 100644 --- a/arch/x86/include/asm/virtext.h +++ b/arch/x86/include/asm/virtext.h @@ -83,9 +83,10 @@ static inline void cpu_emergency_vmxoff(void)   */  static inline int cpu_has_svm(const char **msg)  { -	if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) { +	if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD && +	    boot_cpu_data.x86_vendor != X86_VENDOR_HYGON) {  		if (msg) -			*msg = "not amd"; +			*msg = "not amd or hygon";  		return 0;  	} |