Skip to content

Commit f764c58

Browse files
Peter ZijlstraIngo Molnar
authored andcommitted
perf/x86: Fixup typo in stub functions
Guenter reported a build warning for CONFIG_CPU_SUP_INTEL=n: > With allmodconfig-CONFIG_CPU_SUP_INTEL, this patch results in: > > In file included from arch/x86/events/amd/core.c:8:0: > arch/x86/events/amd/../perf_event.h:1036:45: warning: ‘struct cpu_hw_event’ declared inside parameter list will not be visible outside of this definition or declaration > static inline int intel_cpuc_prepare(struct cpu_hw_event *cpuc, int cpu) While harmless (an unsed pointer is an unused pointer, no matter the type) it needs fixing. Reported-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: stable@vger.kernel.org Fixes: d01b1f9 ("perf/x86/intel: Make cpuc allocations consistent") Link: http://lkml.kernel.org/r/20190315081410.GR5996@hirez.programming.kicks-ass.net Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent ede271b commit f764c58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/x86/events/perf_event.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,12 +1033,12 @@ static inline int intel_pmu_init(void)
10331033
return 0;
10341034
}
10351035

1036-
static inline int intel_cpuc_prepare(struct cpu_hw_event *cpuc, int cpu)
1036+
static inline int intel_cpuc_prepare(struct cpu_hw_events *cpuc, int cpu)
10371037
{
10381038
return 0;
10391039
}
10401040

1041-
static inline void intel_cpuc_finish(struct cpu_hw_event *cpuc)
1041+
static inline void intel_cpuc_finish(struct cpu_hw_events *cpuc)
10421042
{
10431043
}
10441044

0 commit comments

Comments
 (0)