[U-Boot] [PATCH 2/8] PPC: Fix mem_to_mem_idma2intr.c by renaming "debug" to "mmdebug"
Marek Vasut
marek.vasut at gmail.com
Mon Oct 3 02:57:24 CEST 2011
From: Marek Vasut <marex at pollux.denx.de>
Also, squash a checkpatch warning in if(debug != 0) part.
Signed-off-by: Marek Vasut <marek.vasut at gmail.com>
---
examples/standalone/mem_to_mem_idma2intr.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/examples/standalone/mem_to_mem_idma2intr.c b/examples/standalone/mem_to_mem_idma2intr.c
index d0a75ea..8a986d3 100644
--- a/examples/standalone/mem_to_mem_idma2intr.c
+++ b/examples/standalone/mem_to_mem_idma2intr.c
@@ -44,10 +44,10 @@ DECLARE_GLOBAL_DATA_PTR;
}
#endif /* STANDALONE */
-static int debug = 1;
+static int mmdebug = 1;
#define DEBUG(fmt, args...) { \
- if(debug != 0) { \
+ if (mmdebug != 0) { \
printf("[%s %d %s]: ",__FILE__,__LINE__,__FUNCTION__); \
printf(fmt, ##args); \
} \
--
1.7.6.2
More information about the U-Boot
mailing list