Module Name: src Committed By: mlelstv Date: Sat May 11 12:24:42 UTC 2019
Modified Files: src/usr.sbin/cpuctl/arch: i386-asm.S Log Message: Fix copy&paste error, the function is named rdmsr(). Found by kre@ To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/cpuctl/arch/i386-asm.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/cpuctl/arch/i386-asm.S diff -u src/usr.sbin/cpuctl/arch/i386-asm.S:1.5 src/usr.sbin/cpuctl/arch/i386-asm.S:1.6 --- src/usr.sbin/cpuctl/arch/i386-asm.S:1.5 Fri May 10 16:42:57 2019 +++ src/usr.sbin/cpuctl/arch/i386-asm.S Sat May 11 12:24:42 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: i386-asm.S,v 1.5 2019/05/10 16:42:57 mlelstv Exp $ */ +/* $NetBSD: i386-asm.S,v 1.6 2019/05/11 12:24:42 mlelstv Exp $ */ /*- * Copyright (c) 1998, 2000, 2004, 2006, 2007 The NetBSD Foundation, Inc. @@ -164,11 +164,11 @@ is486dlc: movl $CPU_486DLC,%eax ret -ENTRY(rdmsr_locked) +ENTRY(rdmsr) movl 4(%esp), %ecx pushl %edi movl $OPTERON_MSR_PASSCODE, %edi rdmsr popl %edi ret -END(rdmsr_locked) +END(rdmsr)