aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/oprofile/nmi_int.c
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@amd.com>2008-07-22 21:08:50 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-26 11:48:02 +0200
commit6657fe4f5650ff7174d418d4bfa50c4640e81a2b (patch)
tree83433379aef1a09fe6898c68f5a16a857ece13af /arch/x86/oprofile/nmi_int.c
parentx86/oprofile: Minor changes in op_model_athlon.c (diff)
downloadlinux-dev-6657fe4f5650ff7174d418d4bfa50c4640e81a2b.tar.xz
linux-dev-6657fe4f5650ff7174d418d4bfa50c4640e81a2b.zip
x86/oprofile: renaming athlon_*() into op_amd_*()
These functions contain code for all AMD CPUs. The new names fit better. Signed-off-by: Robert Richter <robert.richter@amd.com> Cc: oprofile-list <oprofile-list@lists.sourceforge.net> Cc: Barry Kasindorf <barry.kasindorf@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/oprofile/nmi_int.c')
-rw-r--r--arch/x86/oprofile/nmi_int.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c
index 75e889156f23..b29819313f2b 100644
--- a/arch/x86/oprofile/nmi_int.c
+++ b/arch/x86/oprofile/nmi_int.c
@@ -425,21 +425,21 @@ int __init op_nmi_init(struct oprofile_operations *ops)
default:
return -ENODEV;
case 6:
- model = &op_athlon_spec;
+ model = &op_amd_spec;
cpu_type = "i386/athlon";
break;
case 0xf:
- model = &op_athlon_spec;
+ model = &op_amd_spec;
/* Actually it could be i386/hammer too, but give
user space an consistent name. */
cpu_type = "x86-64/hammer";
break;
case 0x10:
- model = &op_athlon_spec;
+ model = &op_amd_spec;
cpu_type = "x86-64/family10";
break;
case 0x11:
- model = &op_athlon_spec;
+ model = &op_amd_spec;
cpu_type = "x86-64/family11h";
break;
}