]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
x86/acrn: Remove redundant chars from ACRN signature
authorShuo Liu <shuo.a.liu@intel.com>
Thu, 6 Aug 2020 11:41:11 +0000 (19:41 +0800)
committerIngo Molnar <mingo@kernel.org>
Thu, 6 Aug 2020 23:32:00 +0000 (01:32 +0200)
hypervisor_cpuid_base() only handles 12 chars of the hypervisor
signature string but is provided with 14 chars.

Remove the redundancy. Additionally, replace the user space uint32_t
with preferred kernel type u32.

Signed-off-by: Shuo Liu <shuo.a.liu@intel.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Link: https://lore.kernel.org/r/20200806114111.9448-1-shuo.a.liu@intel.com
arch/x86/kernel/cpu/acrn.c

index 3b08cdfc6514c04d85d8607eeebb25adb262e3bc..0b2c03943ac6b31fea3d742e5db5b379f70018c7 100644 (file)
@@ -17,9 +17,9 @@
 #include <asm/idtentry.h>
 #include <asm/irq_regs.h>
 
-static uint32_t __init acrn_detect(void)
+static u32 __init acrn_detect(void)
 {
-       return hypervisor_cpuid_base("ACRNACRNACRN\0\0", 0);
+       return hypervisor_cpuid_base("ACRNACRNACRN", 0);
 }
 
 static void __init acrn_init_platform(void)