diff --git a/sys/arch/x86/x86/identcpu.c b/sys/arch/x86/x86/identcpu.c index 883128d62ad4..ac5b435c06dd 100644 --- a/sys/arch/x86/x86/identcpu.c +++ b/sys/arch/x86/x86/identcpu.c @@ -1,4 +1,4 @@ -/* $NetBSD: identcpu.c,v 1.44 2014/03/24 20:06:33 christos Exp $ */ +/* $NetBSD: identcpu.c,v 1.45 2014/07/08 19:35:36 msaitoh Exp $ */ /*- * Copyright (c) 1999, 2000, 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.44 2014/03/24 20:06:33 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.45 2014/07/08 19:35:36 msaitoh Exp $"); #include "opt_xen.h" @@ -667,6 +667,9 @@ cpu_probe_vortex86(struct cpu_info *ci) case 0x33504d44: strcpy(cpu_brand_string, "Vortex86MX"); break; + case 0x37504d44: + strcpy(cpu_brand_string, "Vortex86EX"); + break; default: strcpy(cpu_brand_string, "Unknown Vortex86"); break;