Module Name:    src
Committed By:   skrll
Date:           Fri Apr 30 15:36:45 UTC 2010

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

Log Message:
Add HPPA_FTRS_TLBU to 7100LC and 7300LC CPUs.


To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 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.83 src/sys/arch/hp700/hp700/machdep.c:1.84
--- src/sys/arch/hp700/hp700/machdep.c:1.83	Fri Apr 30 14:32:31 2010
+++ src/sys/arch/hp700/hp700/machdep.c	Fri Apr 30 15:36:45 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.83 2010/04/30 14:32:31 skrll Exp $	*/
+/*	$NetBSD: machdep.c,v 1.84 2010/04/30 15:36:45 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.83 2010/04/30 14:32:31 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.84 2010/04/30 15:36:45 skrll Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -332,7 +332,7 @@
 #ifdef HP7100LC_CPU
 	{ "PA7100LC", "Hummingbird", "PCXL",
 	  hpcxl, HPPA_CPU_PCXL,
-	  HPPA_FTRS_BTLBU|HPPA_FTRS_HVT, "1.1c",
+	  HPPA_FTRS_TLBU | HPPA_FTRS_BTLBU | HPPA_FTRS_HVT, "1.1c",
 	  desidhash_l, itlb_l, dtlb_l, itlbna_l, dtlbna_l, tlbd_l,
 	  ibtlb_g, NULL, pbtlb_g, hpti_g },
 #endif
@@ -346,7 +346,7 @@
 #ifdef HP7300LC_CPU
 	{ "PA7300LC", "Velociraptor", "PCXL2",
 	  hpcxl2, HPPA_CPU_PCXL2,
-	  HPPA_FTRS_BTLBU|HPPA_FTRS_HVT, "1.1e",
+	  HPPA_FTRS_TLBU | HPPA_FTRS_BTLBU | HPPA_FTRS_HVT, "1.1e",
 	  desidhash_l, itlb_l, dtlb_l, itlbna_l, dtlbna_l, tlbd_l,
 	  ibtlb_g, NULL, pbtlb_g, hpti_g },
 #endif

Reply via email to