aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/perf_counter.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/cpu/perf_counter.c')
-rw-r--r--arch/x86/kernel/cpu/perf_counter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/cpu/perf_counter.c b/arch/x86/kernel/cpu/perf_counter.c
index 902282d68b0c..3f95b0cdc550 100644
--- a/arch/x86/kernel/cpu/perf_counter.c
+++ b/arch/x86/kernel/cpu/perf_counter.c
@@ -217,15 +217,15 @@ static int __hw_perf_counter_init(struct perf_counter *counter)
217 /* 217 /*
218 * Raw event type provide the config in the event structure 218 * Raw event type provide the config in the event structure
219 */ 219 */
220 if (hw_event->raw_type) { 220 if (perf_event_raw(hw_event)) {
221 hwc->config |= pmc_ops->raw_event(hw_event->raw_event_id); 221 hwc->config |= pmc_ops->raw_event(perf_event_config(hw_event));
222 } else { 222 } else {
223 if (hw_event->event_id >= pmc_ops->max_events) 223 if (perf_event_id(hw_event) >= pmc_ops->max_events)
224 return -EINVAL; 224 return -EINVAL;
225 /* 225 /*
226 * The generic map: 226 * The generic map:
227 */ 227 */
228 hwc->config |= pmc_ops->event_map(hw_event->event_id); 228 hwc->config |= pmc_ops->event_map(perf_event_id(hw_event));
229 } 229 }
230 counter->wakeup_pending = 0; 230 counter->wakeup_pending = 0;
231 231