From: Michael Ellerman Date: Tue, 9 Oct 2012 04:20:33 +0000 (+0000) Subject: powerpc/xmon: Remove renaming #defines of scanhex() and skipbl() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b3dc19cddce37a1aaebc911c8db94e5209a9764d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git powerpc/xmon: Remove renaming #defines of scanhex() and skipbl() We have two #defines that rename scanhex() and skipbl() to xmon_scanhex() and xmon_skipbl() - but no one ever uses those names. So the only effect is to rename the actual symbols in the generated code, and AFACIS there is no reason to do that, so drop them. Signed-off-by: Michael Ellerman Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 67d36ab445eb..cc96a7129756 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c @@ -52,9 +52,6 @@ #include "nonstdio.h" #include "dis-asm.h" -#define scanhex xmon_scanhex -#define skipbl xmon_skipbl - #ifdef CONFIG_SMP static cpumask_t cpus_in_xmon = CPU_MASK_NONE; static unsigned long xmon_taken = 1;