[PATCH] mpc8xx: Expose show_regs()

To match the other PowerPC platforms the function show_regs() must not be marked static but instead be an exposed global function.
Cc: Christophe Leroy christophe.leroy@c-s.fr Cc: Wolfgang Denk wd@denx.de Signed-off-by: Tom Rini trini@konsulko.com --- I stumbled on this to see if the BEDBUG code still compiles correctly. It does, so I'm submitting this patch to allow it to be in theory used on mpc8xx. --- arch/powerpc/cpu/mpc8xx/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/powerpc/cpu/mpc8xx/traps.c b/arch/powerpc/cpu/mpc8xx/traps.c index d2bbf3e99686..899bcd86188a 100644 --- a/arch/powerpc/cpu/mpc8xx/traps.c +++ b/arch/powerpc/cpu/mpc8xx/traps.c @@ -51,7 +51,7 @@ static void print_backtrace(unsigned long *sp) printf("\n"); }
-static void show_regs(struct pt_regs *regs) +void show_regs(struct pt_regs *regs) { int i;

Le 29/01/2020 à 17:07, Tom Rini a écrit :
To match the other PowerPC platforms the function show_regs() must not be marked static but instead be an exposed global function.
Cc: Christophe Leroy christophe.leroy@c-s.fr Cc: Wolfgang Denk wd@denx.de Signed-off-by: Tom Rini trini@konsulko.com
Acked-by: Christophe Leroy christophe.leroy@c-s.fr
I stumbled on this to see if the BEDBUG code still compiles correctly. It does, so I'm submitting this patch to allow it to be in theory used on mpc8xx.
arch/powerpc/cpu/mpc8xx/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/powerpc/cpu/mpc8xx/traps.c b/arch/powerpc/cpu/mpc8xx/traps.c index d2bbf3e99686..899bcd86188a 100644 --- a/arch/powerpc/cpu/mpc8xx/traps.c +++ b/arch/powerpc/cpu/mpc8xx/traps.c @@ -51,7 +51,7 @@ static void print_backtrace(unsigned long *sp) printf("\n"); }
-static void show_regs(struct pt_regs *regs) +void show_regs(struct pt_regs *regs) { int i;

On Wed, Jan 29, 2020 at 11:07:19AM -0500, Tom Rini wrote:
To match the other PowerPC platforms the function show_regs() must not be marked static but instead be an exposed global function.
Cc: Christophe Leroy christophe.leroy@c-s.fr Cc: Wolfgang Denk wd@denx.de Signed-off-by: Tom Rini trini@konsulko.com Acked-by: Christophe Leroy christophe.leroy@c-s.fr
Applied to u-boot/master, thanks!
participants (2)
-
Christophe Leroy
-
Tom Rini