diff options
author | Robert Richter <robert.richter@amd.com> | 2010-03-31 13:58:36 +0400 |
---|---|---|
committer | Robert Richter <robert.richter@amd.com> | 2010-05-04 13:35:29 +0400 |
commit | 5bdb7934ca4115a12c7d585c5a45312b1c36909b (patch) | |
tree | a80c8e0460a7bdbe1f3f60e6cefdecb8424e2181 /arch/x86/oprofile | |
parent | da759fe5be24ec3b236a76c007b460cf6caf2009 (diff) | |
download | linux-5bdb7934ca4115a12c7d585c5a45312b1c36909b.tar.xz |
oprofile/x86: remove duplicate IBS capability check
The check is already done in ibs_exit().
Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'arch/x86/oprofile')
-rw-r--r-- | arch/x86/oprofile/op_model_amd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/oprofile/op_model_amd.c b/arch/x86/oprofile/op_model_amd.c index e159254fb7cd..384c52410480 100644 --- a/arch/x86/oprofile/op_model_amd.c +++ b/arch/x86/oprofile/op_model_amd.c @@ -490,8 +490,7 @@ static int init_ibs_nmi(void) /* uninitialize the APIC for the IBS interrupts if needed */ static void clear_ibs_nmi(void) { - if (ibs_caps) - on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1); + on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1); } /* initialize the APIC for the IBS interrupts if available */ |