From: Marek Vasut <ma...@pollux.denx.de>

Also, squash a checkpatch warning in if(debug != 0) part.

Signed-off-by: Marek Vasut <marek.va...@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

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to