Commit 64291efc authored by Anton Blanchard's avatar Anton Blanchard

ppc64: Fix up clash with flags variable in udbg.c

parent d38045b0
...@@ -209,10 +209,10 @@ udbg_printf(const char *fmt, ...) ...@@ -209,10 +209,10 @@ udbg_printf(const char *fmt, ...)
/* Special print used by PPCDBG() macro */ /* Special print used by PPCDBG() macro */
void void
udbg_ppcdbg(unsigned long flags, const char *fmt, ...) udbg_ppcdbg(unsigned long debug_flags, const char *fmt, ...)
{ {
unsigned long flags; unsigned long flags;
unsigned long active_debugs = flags & naca->debug_switch; unsigned long active_debugs = debug_flags & naca->debug_switch;
if ( active_debugs ) { if ( active_debugs ) {
va_list ap; va_list ap;
......
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