diff options
-rw-r--r-- | arch/x86/kernel/cpu/perf_counter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/perf_counter.c b/arch/x86/kernel/cpu/perf_counter.c index d1c8036dcbd6..856b0b852192 100644 --- a/arch/x86/kernel/cpu/perf_counter.c +++ b/arch/x86/kernel/cpu/perf_counter.c | |||
@@ -393,7 +393,7 @@ void hw_perf_restore(u64 ctrl) | |||
393 | */ | 393 | */ |
394 | EXPORT_SYMBOL_GPL(hw_perf_restore); | 394 | EXPORT_SYMBOL_GPL(hw_perf_restore); |
395 | 395 | ||
396 | static inline u64 intel_pmu_get_status(u64 mask) | 396 | static inline u64 intel_pmu_get_status(void) |
397 | { | 397 | { |
398 | u64 status; | 398 | u64 status; |
399 | 399 | ||
@@ -728,7 +728,7 @@ static int intel_pmu_handle_irq(struct pt_regs *regs, int nmi) | |||
728 | 728 | ||
729 | cpuc->throttle_ctrl = intel_pmu_save_disable_all(); | 729 | cpuc->throttle_ctrl = intel_pmu_save_disable_all(); |
730 | 730 | ||
731 | status = intel_pmu_get_status(cpuc->throttle_ctrl); | 731 | status = intel_pmu_get_status(); |
732 | if (!status) | 732 | if (!status) |
733 | goto out; | 733 | goto out; |
734 | 734 | ||
@@ -753,7 +753,7 @@ again: | |||
753 | /* | 753 | /* |
754 | * Repeat if there is more work to be done: | 754 | * Repeat if there is more work to be done: |
755 | */ | 755 | */ |
756 | status = intel_pmu_get_status(cpuc->throttle_ctrl); | 756 | status = intel_pmu_get_status(); |
757 | if (status) | 757 | if (status) |
758 | goto again; | 758 | goto again; |
759 | out: | 759 | out: |