Commit 6ffc89ca authored by Max Filippov's avatar Max Filippov Committed by Greg Kroah-Hartman

xtensa: fix xtensa_pmu_setup prototype

commit 6d65d376 upstream.

Fix the following build error in configurations with
CONFIG_XTENSA_VARIANT_HAVE_PERF_EVENTS=y:

  arch/xtensa/kernel/perf_event.c:420:29: error: passing argument 3 of
  ‘cpuhp_setup_state’ from incompatible pointer type

Cc: stable@vger.kernel.org
Fixes: 25a77b55 ("xtensa/perf: Convert the hotplug notifier to state machine callbacks")
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b86f06e1
...@@ -404,7 +404,7 @@ static struct pmu xtensa_pmu = { ...@@ -404,7 +404,7 @@ static struct pmu xtensa_pmu = {
.read = xtensa_pmu_read, .read = xtensa_pmu_read,
}; };
static int xtensa_pmu_setup(int cpu) static int xtensa_pmu_setup(unsigned int cpu)
{ {
unsigned i; unsigned i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment