[PATCH 2/5] omap2/3/4: serial: remove initialization sparse warnings

2010-07-08 Thread Tony Lindgren
From: Nishanth Menon n...@ti.com

Initialization of pointer should be done with NULL. Removes sparse
warnings:
arch/arm/mach-omap2/serial.c:566:17: warning: Using plain integer as NULL 
pointer
arch/arm/mach-omap2/serial.c:567:17: warning: Using plain integer as NULL 
pointer

Signed-off-by: Nishanth Menon n...@ti.com
Signed-off-by: Tony Lindgren t...@atomide.com
---
 arch/arm/mach-omap2/serial.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 804dbb2..9476c1c 100644
--- a/arch/arm/mach-omap2/serial.c
+++ b/arch/arm/mach-omap2/serial.c
@@ -495,8 +495,8 @@ static void omap_uart_idle_init(struct omap_uart_state 
*uart)
}
uart-wk_mask = wk_mask;
} else {
-   uart-wk_en = 0;
-   uart-wk_st = 0;
+   uart-wk_en = NULL;
+   uart-wk_st = NULL;
uart-wk_mask = 0;
uart-padconf = 0;
}

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 2/5] omap2/3/4: serial: remove initialization sparse warnings

2010-06-22 Thread Nishanth Menon
Initialization of pointer should be done with NULL. Removes sparse
warnings:
arch/arm/mach-omap2/serial.c:566:17: warning: Using plain integer as NULL 
pointer
arch/arm/mach-omap2/serial.c:567:17: warning: Using plain integer as NULL 
pointer

Cc: Deepak K deepa...@ti.com
Cc: Govindraj R govindraj.r...@ti.com
Cc: Kevin Hilman khil...@deeprootsystems.com
Cc: Tero Kristo tero.kri...@nokia.com
Cc: Tony Lindgren t...@atomide.com

Signed-off-by: Nishanth Menon n...@ti.com
---
 arch/arm/mach-omap2/serial.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 804dbb2..9476c1c 100644
--- a/arch/arm/mach-omap2/serial.c
+++ b/arch/arm/mach-omap2/serial.c
@@ -495,8 +495,8 @@ static void omap_uart_idle_init(struct omap_uart_state 
*uart)
}
uart-wk_mask = wk_mask;
} else {
-   uart-wk_en = 0;
-   uart-wk_st = 0;
+   uart-wk_en = NULL;
+   uart-wk_st = NULL;
uart-wk_mask = 0;
uart-padconf = 0;
}
-- 
1.6.3.3

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html