From a26ee70316e4e0e42413a0466fd720f2fce17682 Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Sun, 31 Jul 2005 06:42:27 +0000 Subject: [PATCH] Print cpu_vendor and the MSR value if we don't support this processor even though we're not asking people to contact us. Requested by: njl --- sys/i386/cpufreq/est.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/i386/cpufreq/est.c b/sys/i386/cpufreq/est.c index 22729cfa177..d9fb68cab87 100644 --- a/sys/i386/cpufreq/est.c +++ b/sys/i386/cpufreq/est.c @@ -705,7 +705,7 @@ est_get_info(device_t dev) if (error) { printf( "est: CPU supports Enhanced Speedstep, but is not recognized.\n" - ); + "est: cpu_vendor %s, msr %0jx\n", cpu_vendor, msr); return (ENXIO); }