Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/include fix swapped comments for EFER LME and LMA



details:   https://anonhg.NetBSD.org/src/rev/62ac12b4dfe5
branches:  trunk
changeset: 828990:62ac12b4dfe5
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sat Jan 13 17:55:57 2018 +0000

description:
fix swapped comments for EFER LME and LMA

diffstat:

 sys/arch/x86/include/specialreg.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 60af643fe514 -r 62ac12b4dfe5 sys/arch/x86/include/specialreg.h
--- a/sys/arch/x86/include/specialreg.h Sat Jan 13 17:35:33 2018 +0000
+++ b/sys/arch/x86/include/specialreg.h Sat Jan 13 17:55:57 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: specialreg.h,v 1.107 2018/01/10 07:04:54 msaitoh Exp $ */
+/*     $NetBSD: specialreg.h,v 1.108 2018/01/13 17:55:57 jdolecek Exp $        */
 
 /*-
  * Copyright (c) 1991 The Regents of the University of California.
@@ -764,8 +764,8 @@
 
 #define MSR_EFER       0xc0000080              /* Extended feature enable */
 #define        EFER_SCE        0x00000001      /* SYSCALL extension */
-#define        EFER_LME        0x00000100      /* Long Mode Active */
-#define        EFER_LMA        0x00000400      /* Long Mode Enabled */
+#define        EFER_LME        0x00000100      /* Long Mode Enable */
+#define        EFER_LMA        0x00000400      /* Long Mode Active */
 #define        EFER_NXE        0x00000800      /* No-Execute Enabled */
 #define        EFER_SVME       0x00001000      /* Secure Virtual Machine En. */
 #define        EFER_LMSLE      0x00002000      /* Long Mode Segment Limit E. */



Home | Main Index | Thread Index | Old Index