$NetBSD: patch-ab,v 1.7 2011/03/16 05:09:16 macallan Exp $

--- estd.c.orig	2011-03-16 04:50:26.000000000 +0000
+++ estd.c
@@ -55,7 +55,8 @@
 #define TECH_EST 1
 #define TECH_POWERNOW 2
 #define TECH_ACPI 3
-#define TECH_MAX 3
+#define TECH_INTREPID 4
+#define TECH_MAX 4
 
 /* this is ugly, but... <shrug> */
 #define MAX_FREQS 32
@@ -116,20 +117,23 @@ int             ndomains;
  static size_t cp_time_size = sizeof(cp_time[0]) * CPUSTATES;
 #endif
 
-static char	*techdesc[4] = {"Unknown",
+static char	*techdesc[5] = {"Unknown",
 				"Enhanced SpeedStep",
 				"PowerNow",
-				"ACPI P-States"
+				"ACPI P-States",
+				"Intrepid"
 				};
-static char	*freqctl[4] = {	"",	
+static char	*freqctl[5] = {	"",	
 				"machdep.est.frequency.available",
 				"machdep.powernow.frequency.available",
-				"hw.acpi.cpu.px_dom0.available"
+				"hw.acpi.cpu.px_dom0.available",
+				"machdep.intrepid.frequency.available"
 				};
-static char	*setctl[4] = {	"",
+static char	*setctl[5] = {	"",
 				"machdep.est.frequency.target",
 				"machdep.powernow.frequency.target",
-				"hw.acpi.cpu.px_dom0.select"
+				"hw.acpi.cpu.px_dom0.select",
+				"machdep.intrepid.frequency.target"
 				};
 
 void
@@ -400,6 +404,10 @@ main(int argc, char *argv[])
 			break;
 		case 'P':
 			tech = TECH_POWERNOW;
+			break;
+		case 'I':
+			tech = TECH_INTREPID;
+			break;
 		case 'a':
 			strategy = AGGRESSIVE;
 			break;
