diff options
author | schweikh <schweikh@FreeBSD.org> | 2005-05-29 17:43:24 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2005-05-29 17:43:24 +0000 |
commit | d5f6019ad6486b94b5cb9ab8e91cf2bac608672a (patch) | |
tree | b26f6b7fa9a237946dda7eb5bd3eb5b84adb8cd2 /sys | |
parent | 75c0ea028315e6414a6ada857afaef370f3f745c (diff) | |
download | FreeBSD-src-d5f6019ad6486b94b5cb9ab8e91cf2bac608672a.zip FreeBSD-src-d5f6019ad6486b94b5cb9ab8e91cf2bac608672a.tar.gz |
Chop a '>' in a feature name (RSVD2>) that snuck in;
this now balances the <> flags displayed at boot, e.g. without this
Features2=0x41d<SSE3,RSVD2>,MON,DS_CPL,CNTX-ID>
MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/amd64/identcpu.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/identcpu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index 60f9567..4000448 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -214,7 +214,7 @@ printcpuinfo(void) "\020" "\001SSE3" /* SSE3 */ "\002<b1>" - "\003RSVD2>" /* "Reserved" bit 2 */ + "\003RSVD2" /* "Reserved" bit 2 */ "\004MON" /* MONITOR/MWAIT Instructions */ "\005DS_CPL" /* CPL Qualified Debug Store */ "\006<b5>" /* Machine specific registers */ diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c index 31171d2..33fe02a 100644 --- a/sys/i386/i386/identcpu.c +++ b/sys/i386/i386/identcpu.c @@ -693,7 +693,7 @@ printcpuinfo(void) "\020" "\001SSE3" /* SSE3 */ "\002<b1>" - "\003RSVD2>" /* "Reserved" bit 2 */ + "\003RSVD2" /* "Reserved" bit 2 */ "\004MON" /* MONITOR/MWAIT Instructions */ "\005DS_CPL" /* CPL Qualified Debug Store */ "\006<b5>" /* Machine specific registers */ |