Module Name:    src
Committed By:   skrll
Date:           Mon Nov  8 19:59:20 UTC 2010

Modified Files:
        src/sys/arch/hp700/hp700: machdep.c

Log Message:
Update cpu_model_cpuid to work for E[2345]5 machines.

>From Sergey Svishchev.


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/sys/arch/hp700/hp700/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/hp700/hp700/machdep.c
diff -u src/sys/arch/hp700/hp700/machdep.c:1.88 src/sys/arch/hp700/hp700/machdep.c:1.89
--- src/sys/arch/hp700/hp700/machdep.c:1.88	Sun Jun  6 12:13:35 2010
+++ src/sys/arch/hp700/hp700/machdep.c	Mon Nov  8 19:59:20 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.88 2010/06/06 12:13:35 skrll Exp $	*/
+/*	$NetBSD: machdep.c,v 1.89 2010/11/08 19:59:20 skrll Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.88 2010/06/06 12:13:35 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.89 2010/11/08 19:59:20 skrll Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -843,6 +843,12 @@
 	case HPPA_BOARD_HP705:
 		return hpcxs;
 
+	case HPPA_BOARD_HPE23:
+	case HPPA_BOARD_HPE25:
+	case HPPA_BOARD_HPE35:
+	case HPPA_BOARD_HPE45:
+		return hpcxl;
+
 	case HPPA_BOARD_HP735_99:
 	case HPPA_BOARD_HP755_99:
 	case HPPA_BOARD_HP755_125:

Reply via email to