From ef4da6312ca54c8062cda9146e616aadda026b37 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Tue, 12 Oct 2010 05:10:34 +0200 Subject: [PATCH] identcpu.c: Fix a typo in the Features2 strings and rename AES -> AESNI. --- sys/platform/pc32/i386/identcpu.c | 4 ++-- sys/platform/pc64/x86_64/identcpu.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/platform/pc32/i386/identcpu.c b/sys/platform/pc32/i386/identcpu.c index 207a21f742..16557636a2 100644 --- a/sys/platform/pc32/i386/identcpu.c +++ b/sys/platform/pc32/i386/identcpu.c @@ -729,7 +729,7 @@ printcpuinfo(void) kprintf("\n Features2=0x%b", cpu_feature2, "\020" "\001SSE3" /* SSE3 */ - "\002PCLMULDQ" /* PCLMULDQ instruction */ + "\002PCLMULQDQ" /* Carry-Less Mul Quadword */ "\003DTES64" /* 64-bit Debug Trace */ "\004MON" /* MONITOR/MWAIT Instructions */ "\005DS_CPL" /* CPL Qualified Debug Store */ @@ -753,7 +753,7 @@ printcpuinfo(void) "\027MOVBE" /* MOVBE Instruction */ "\030POPCNT" "\031" - "\032AES" /* AES Instruction */ + "\032AESNI" /* AES Crypto*/ "\033XSAVE" "\034OSXSAVE" "\035" diff --git a/sys/platform/pc64/x86_64/identcpu.c b/sys/platform/pc64/x86_64/identcpu.c index 22bbd3db87..52e8d5c334 100644 --- a/sys/platform/pc64/x86_64/identcpu.c +++ b/sys/platform/pc64/x86_64/identcpu.c @@ -240,7 +240,7 @@ printcpuinfo(void) kprintf("\n Features2=0x%b", cpu_feature2, "\020" "\001SSE3" /* SSE3 */ - "\002PCLMULDQ" /* PCLMULDQ instruction */ + "\002PCLMULQDQ" /* Carry-Less Mul Quadword */ "\003DTES64" /* 64-bit Debug Trace */ "\004MON" /* MONITOR/MWAIT Instructions */ "\005DS_CPL" /* CPL Qualified Debug Store */ @@ -264,7 +264,7 @@ printcpuinfo(void) "\027MOVBE" /* MOVBE instruction */ "\030POPCNT" "\031" - "\032AES" /* AES instruction */ + "\032AESNI" /* AES Crypto*/ "\033XSAVE" "\034OSXSAVE" "\035" -- 2.41.0