aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwaipayan Ray <[email protected]>2021-07-11 14:18:37 +0530
committerMichael Ellerman <[email protected]>2022-05-04 19:37:44 +1000
commit4ac751d3f3cc7f62200d1aca32ce6f58f3d0ae96 (patch)
tree54db08bef5cc0a04865b3ba81a4810ad49f539aa
parente62520b8870837440262057f6573c231cd700116 (diff)
powerpc/powernv: Switch from __FUNCTION__ to __func__
__FUNCTION__ exists only for backwards compatibility reasons with old gcc versions. Replace it with __func__. Signed-off-by: Dwaipayan Ray <[email protected]> Signed-off-by: Christophe Leroy <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--arch/powerpc/platforms/powernv/opal-imc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powernv/opal-imc.c b/arch/powerpc/platforms/powernv/opal-imc.c
index 3fea5da6d1b3..348a8cdaecd6 100644
--- a/arch/powerpc/platforms/powernv/opal-imc.c
+++ b/arch/powerpc/platforms/powernv/opal-imc.c
@@ -211,7 +211,7 @@ static void disable_core_pmu_counters(void)
get_hard_smp_processor_id(cpu));
if (rc)
pr_err("%s: Failed to stop Core (cpu = %d)\n",
- __FUNCTION__, cpu);
+ __func__, cpu);
}
cpus_read_unlock();
}