summaryrefslogtreecommitdiff
path: root/Intel
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-02-22 01:52:48 -0500
committerDave Jones <davej@redhat.com>2011-02-22 01:52:48 -0500
commit7d055df1d9a4bd13f31b011201d1aab2268c8df3 (patch)
tree287b24bd5e784c9cc4060602e3965ea34a8aa17a /Intel
parent031a5de81327026a03d153e318b4600639a4640e (diff)
rename bluesmoke to machine_check
Diffstat (limited to 'Intel')
-rw-r--r--Intel/Intel.h2
-rw-r--r--Intel/info.c4
-rw-r--r--Intel/machine_check.c (renamed from Intel/bluesmoke.c)2
3 files changed, 4 insertions, 4 deletions
diff --git a/Intel/Intel.h b/Intel/Intel.h
index a31078a..bb6d71b 100644
--- a/Intel/Intel.h
+++ b/Intel/Intel.h
@@ -2,7 +2,7 @@
#define _INTEL_H
extern void decode_Intel_caches (struct cpudata *cpu, int output);
extern void show_Intel_caches(struct cpudata *cpu);
-extern void decode_Intel_bluesmoke(int cpunum, int family);
+extern void decode_Intel_machine_check(int cpunum, int family);
extern void dump_p4_MSRs(struct cpudata *cpu);
extern void dump_p6_MSRs(struct cpudata *cpu);
extern void dump_performance_MSRs(struct cpudata *cpu);
diff --git a/Intel/info.c b/Intel/info.c
index b414059..3a9746f 100644
--- a/Intel/info.c
+++ b/Intel/info.c
@@ -134,8 +134,8 @@ void display_Intel_info(struct cpudata *cpu)
}
/* FIXME: Bit test for MCA here!*/
- if (show_bluesmoke)
- decode_Intel_bluesmoke(cpu->number, cpu->family);
+ if (show_machine_check)
+ decode_Intel_machine_check(cpu->number, cpu->family);
if (show_microcode)
decode_microcode(cpu);
diff --git a/Intel/bluesmoke.c b/Intel/machine_check.c
index eb55677..89af8c7 100644
--- a/Intel/bluesmoke.c
+++ b/Intel/machine_check.c
@@ -86,7 +86,7 @@ static void decode_mcg_ctl(int cpunum)
}
-void decode_Intel_bluesmoke(int cpunum, int family)
+void decode_Intel_machine_check(int cpunum, int family)
{
unsigned long long val;
int i, extcount = 0;