Found these while tinkering with my CPU scaling issue the other day. Two
instances of trailing white-space.

Index: sys/arch/amd64/amd64/identcpu.c
===================================================================
RCS file: /cvs/src/sys/arch/amd64/amd64/identcpu.c,v
retrieving revision 1.118
diff -u -p -u -p -r1.118 identcpu.c
--- sys/arch/amd64/amd64/identcpu.c	31 Dec 2020 06:22:33 -0000	1.118
+++ sys/arch/amd64/amd64/identcpu.c	24 Jun 2021 15:42:05 -0000
@@ -941,7 +941,7 @@ cpu_check_vmm_cap(struct cpu_info *ci)
 			/* VM Functions available? */
 			if (msr & (IA32_VMX_ENABLE_VM_FUNCTIONS) << 32) {
 				ci->ci_vmm_cap.vcc_vmx.vmx_vm_func =
-				    rdmsr(IA32_VMX_VMFUNC);	
+				    rdmsr(IA32_VMX_VMFUNC);
 			}
 		}
 	}
@@ -1025,7 +1025,7 @@ cpu_check_vmm_cap(struct cpu_info *ci)
 		 * hardware (RDCL_NO), or we may be nested in an VMM that
 		 * is doing flushes (SKIP_L1DFL_VMENTRY) using the MSR.
 		 * In either case no mitigation at all is necessary.
-		 */	
+		 */
 		if (ci->ci_feature_sefflags_edx & SEFF0EDX_ARCH_CAP) {
 			msr = rdmsr(MSR_ARCH_CAPABILITIES);
 			if ((msr & ARCH_CAPABILITIES_RDCL_NO) ||

Reply via email to