diff mbox

[U-Boot,2/8] PPC: Fix mem_to_mem_idma2intr.c by renaming "debug" to "mmdebug"

Message ID 1317603450-7527-3-git-send-email-marek.vasut@gmail.com
State Changes Requested
Headers show

Commit Message

Marek Vasut Oct. 3, 2011, 12:57 a.m. UTC
From: Marek Vasut <marex@pollux.denx.de>

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

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
---
 examples/standalone/mem_to_mem_idma2intr.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Wolfgang Denk Oct. 3, 2011, 2:28 p.m. UTC | #1
Dear Marek Vasut,

In message <1317603450-7527-3-git-send-email-marek.vasut@gmail.com> you wrote:
> From: Marek Vasut <marex@pollux.denx.de>

Please FIX your git setup.  This is NOT a valid address.

> Also, squash a checkpatch warning in if(debug != 0) part.
> 
> Signed-off-by: Marek Vasut <marek.vasut@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);					\
>  	}								\

All of this is bogus. The #define DEBUG itself should be fixed here.
And when debug resp. mmdebug is set to 1 anyway, and there is no
place anywhere to change that value, we can omit the "if (mmdebug != 0)",
too.

Best regards,

Wolfgang Denk
diff mbox

Patch

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);					\
 	}								\