* [PATCH v3] OMAP: NAND: Fix static declaration warning
@ 2010-10-05 21:56 G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2: onenand: Fix static function warnings G, Manjunath Kondaiah
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: G, Manjunath Kondaiah @ 2010-10-05 21:56 UTC (permalink / raw)
To: linux-omap; +Cc: linux-arm-kernel, linux-mtd, Tony Lindgren, Nishanth Menon
This patch fixes sparse warning for static declaration of variable "use_dma"
drivers/mtd/nand/omap2.c:114:11: warning: symbol 'use_dma' was not declared. Should it be static?
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-mtd@lists.infradead.org
Cc: Tony Lindgren <tony@atomide.com>
Cc: Nishanth Menon <nm@ti.com>
---
Changes since v1:
- no logical changes, patch seperated from series based Tony's suggestion.
drivers/mtd/nand/omap2.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 133d515..439e80d 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -111,11 +111,11 @@ static int use_dma = 1;
module_param(use_dma, bool, 0);
MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
#else
-const int use_dma;
+static const int use_dma;
#endif
#else
const int use_prefetch;
-const int use_dma;
+static const int use_dma;
#endif
struct omap_nand_info {
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3] OMAP2: onenand: Fix static function warnings
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
@ 2010-10-05 21:56 ` G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write G, Manjunath Kondaiah
` (3 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: G, Manjunath Kondaiah @ 2010-10-05 21:56 UTC (permalink / raw)
To: linux-omap
Fixes below sparse warning.
drivers/mtd/onenand/omap2.c:577:5: warning: symbol 'omap2_onenand_rephase' was not declared. Should it be static?
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
---
Changes since v1 and v2:
- no logical changes, patch seperated from series based on Tony's suggestion.
drivers/mtd/onenand/omap2.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/onenand/omap2.c b/drivers/mtd/onenand/omap2.c
index 9f322f1..608cc8d 100644
--- a/drivers/mtd/onenand/omap2.c
+++ b/drivers/mtd/onenand/omap2.c
@@ -574,7 +574,7 @@ static int __adjust_timing(struct device *dev, void *data)
return ret;
}
-int omap2_onenand_rephase(void)
+static int omap2_onenand_rephase(void)
{
return driver_for_each_device(&omap2_onenand_driver.driver, NULL,
NULL, __adjust_timing);
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2: onenand: Fix static function warnings G, Manjunath Kondaiah
@ 2010-10-05 21:56 ` G, Manjunath Kondaiah
2010-10-11 18:59 ` Artem Bityutskiy
2010-10-05 21:56 ` [PATCH v3] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
` (2 subsequent siblings)
4 siblings, 1 reply; 11+ messages in thread
From: G, Manjunath Kondaiah @ 2010-10-05 21:56 UTC (permalink / raw)
To: linux-omap; +Cc: linux-arm-kernel, linux-mtd
Following sparse warnings exists due to use of writel/w and readl/w functions.
This patch fixes the sparse warnings by converting readl/w functions usage into
__raw_readl/__raw_readw functions.
drivers/mtd/nand/omap2.c:484:15: warning: symbol '__v' shadows an earlier one
drivers/mtd/nand/omap2.c:484:15: originally declared here
drivers/mtd/onenand/omap2.c:86:9: warning: symbol '__v' shadows an earlier one
drivers/mtd/onenand/omap2.c:86:9: originally declared here
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-mtd@lists.infradead.org
---
Changes since v1 and v2:
- no logical changes, patch seperated from series based on Tony's suggestion.
drivers/mtd/nand/omap2.c | 2 +-
drivers/mtd/onenand/omap2.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 439e80d..23d2810 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -481,7 +481,7 @@ static int omap_verify_buf(struct mtd_info *mtd, const u_char * buf, int len)
len >>= 1;
while (len--) {
- if (*p++ != cpu_to_le16(readw(info->nand.IO_ADDR_R)))
+ if (*p++ != cpu_to_le16(__raw_readw(info->nand.IO_ADDR_R)))
return -EFAULT;
}
diff --git a/drivers/mtd/onenand/omap2.c b/drivers/mtd/onenand/omap2.c
index 608cc8d..b6a2b9f 100644
--- a/drivers/mtd/onenand/omap2.c
+++ b/drivers/mtd/onenand/omap2.c
@@ -83,7 +83,7 @@ static irqreturn_t omap2_onenand_interrupt(int irq, void *dev_id)
static inline unsigned short read_reg(struct omap2_onenand *c, int reg)
{
- return readw(c->onenand.base + reg);
+ return __raw_readw(c->onenand.base + reg);
}
static inline void write_reg(struct omap2_onenand *c, unsigned short value,
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2: onenand: Fix static function warnings G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write G, Manjunath Kondaiah
@ 2010-10-05 21:56 ` G, Manjunath Kondaiah
2010-10-12 5:36 ` G, Manjunath Kondaiah
2010-10-19 9:06 ` Samuel Ortiz
2010-10-07 17:35 ` [PATCH v3] OMAP: NAND: Fix static declaration warning Vimal Singh
2010-10-11 18:58 ` Artem Bityutskiy
4 siblings, 2 replies; 11+ messages in thread
From: G, Manjunath Kondaiah @ 2010-10-05 21:56 UTC (permalink / raw)
To: linux-omap; +Cc: linux-arm-kernel, Samuel Ortiz, Tony Lindgren, Nishanth Menon
Fixes following sparse warnings for twl4030 and twl6030 irq files.
drivers/mfd/twl4030-irq.c:783:5: warning: symbol 'twl4030_init_irq' was not declared. Should it be static?
drivers/mfd/twl4030-irq.c:863:5: warning: symbol 'twl4030_exit_irq' was not declared. Should it be static?
drivers/mfd/twl4030-irq.c:873:5: warning: symbol 'twl4030_init_chip_irq' was not declared. Should it be static?
drivers/mfd/twl6030-irq.c:226:5: warning: symbol 'twl6030_init_irq' was not declared. Should it be static?
drivers/mfd/twl6030-irq.c:290:5: warning: symbol 'twl6030_exit_irq' was not declared. Should it be static?
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Nishanth Menon <nm@ti.com>
---
Changes from v2 to v3:
- Created twl-core.h in drivers/mfd and seperated the patch from sparse fixes
based on tony's suggestion.
Changes since v1 to v2:
- no logical change for this patch but sparse fixes series got updated with
review comments.
drivers/mfd/twl-core.h | 10 ++++++++++
drivers/mfd/twl4030-irq.c | 1 +
drivers/mfd/twl6030-irq.c | 2 ++
3 files changed, 13 insertions(+), 0 deletions(-)
create mode 100644 drivers/mfd/twl-core.h
diff --git a/drivers/mfd/twl-core.h b/drivers/mfd/twl-core.h
new file mode 100644
index 0000000..8c50a55
--- /dev/null
+++ b/drivers/mfd/twl-core.h
@@ -0,0 +1,10 @@
+#ifndef __TWL_CORE_H__
+#define __TWL_CORE_H__
+
+extern int twl6030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end);
+extern int twl6030_exit_irq(void);
+extern int twl4030_init_irq(int irq_num, unsigned irq_base, unsigned irq_end);
+extern int twl4030_exit_irq(void);
+extern int twl4030_init_chip_irq(const char *chip);
+
+#endif /* __TWL_CORE_H__ */
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c
index 097f24d..2563750 100644
--- a/drivers/mfd/twl4030-irq.c
+++ b/drivers/mfd/twl4030-irq.c
@@ -35,6 +35,7 @@
#include <linux/i2c/twl.h>
+#include "twl-core.h"
/*
* TWL4030 IRQ handling has two stages in hardware, and thus in software.
diff --git a/drivers/mfd/twl6030-irq.c b/drivers/mfd/twl6030-irq.c
index 10bf228..8876b97 100644
--- a/drivers/mfd/twl6030-irq.c
+++ b/drivers/mfd/twl6030-irq.c
@@ -37,6 +37,8 @@
#include <linux/kthread.h>
#include <linux/i2c/twl.h>
+#include "twl-core.h"
+
/*
* TWL6030 (unlike its predecessors, which had two level interrupt handling)
* three interrupt registers INT_STS_A, INT_STS_B and INT_STS_C.
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v3] OMAP: NAND: Fix static declaration warning
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
` (2 preceding siblings ...)
2010-10-05 21:56 ` [PATCH v3] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
@ 2010-10-07 17:35 ` Vimal Singh
2010-10-11 18:58 ` Artem Bityutskiy
4 siblings, 0 replies; 11+ messages in thread
From: Vimal Singh @ 2010-10-07 17:35 UTC (permalink / raw)
To: G, Manjunath Kondaiah
Cc: linux-omap, linux-arm-kernel, linux-mtd, Tony Lindgren,
Nishanth Menon
On Wed, Oct 6, 2010 at 3:26 AM, G, Manjunath Kondaiah <manjugk@ti.com> wrote:
> This patch fixes sparse warning for static declaration of variable "use_dma"
>
> drivers/mtd/nand/omap2.c:114:11: warning: symbol 'use_dma' was not declared. Should it be static?
>
> Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-mtd@lists.infradead.org
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Nishanth Menon <nm@ti.com>
> ---
> Changes since v1:
> - no logical changes, patch seperated from series based Tony's suggestion.
>
> drivers/mtd/nand/omap2.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
> index 133d515..439e80d 100644
> --- a/drivers/mtd/nand/omap2.c
> +++ b/drivers/mtd/nand/omap2.c
> @@ -111,11 +111,11 @@ static int use_dma = 1;
> module_param(use_dma, bool, 0);
> MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
> #else
> -const int use_dma;
> +static const int use_dma;
> #endif
> #else
> const int use_prefetch;
> -const int use_dma;
> +static const int use_dma;
I did not understand, why did it not pointed same error for 'const int
use_prefetch'?
--
Regards,
Vimal Singh
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3] OMAP: NAND: Fix static declaration warning
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
` (3 preceding siblings ...)
2010-10-07 17:35 ` [PATCH v3] OMAP: NAND: Fix static declaration warning Vimal Singh
@ 2010-10-11 18:58 ` Artem Bityutskiy
4 siblings, 0 replies; 11+ messages in thread
From: Artem Bityutskiy @ 2010-10-11 18:58 UTC (permalink / raw)
To: G, Manjunath Kondaiah
Cc: linux-omap, linux-arm-kernel, linux-mtd, Tony Lindgren,
Nishanth Menon
On Wed, 2010-10-06 at 03:26 +0530, G, Manjunath Kondaiah wrote:
> This patch fixes sparse warning for static declaration of variable "use_dma"
>
> drivers/mtd/nand/omap2.c:114:11: warning: symbol 'use_dma' was not declared. Should it be static?
>
> Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-mtd@lists.infradead.org
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Nishanth Menon <nm@ti.com>
I've pushed this patch to my l2-mtd-2.6.git.
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write
2010-10-05 21:56 ` [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write G, Manjunath Kondaiah
@ 2010-10-11 18:59 ` Artem Bityutskiy
0 siblings, 0 replies; 11+ messages in thread
From: Artem Bityutskiy @ 2010-10-11 18:59 UTC (permalink / raw)
To: G, Manjunath Kondaiah; +Cc: linux-omap, linux-arm-kernel, linux-mtd
On Wed, 2010-10-06 at 03:26 +0530, G, Manjunath Kondaiah wrote:
> Following sparse warnings exists due to use of writel/w and readl/w functions.
>
> This patch fixes the sparse warnings by converting readl/w functions usage into
> __raw_readl/__raw_readw functions.
>
> drivers/mtd/nand/omap2.c:484:15: warning: symbol '__v' shadows an earlier one
> drivers/mtd/nand/omap2.c:484:15: originally declared here
>
> drivers/mtd/onenand/omap2.c:86:9: warning: symbol '__v' shadows an earlier one
> drivers/mtd/onenand/omap2.c:86:9: originally declared here
>
> Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-mtd@lists.infradead.org
I've pushed this patch to my l2-mtd-2.6.git.
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
2010-10-05 21:56 ` [PATCH v3] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
@ 2010-10-12 5:36 ` G, Manjunath Kondaiah
2010-10-19 9:06 ` Samuel Ortiz
1 sibling, 0 replies; 11+ messages in thread
From: G, Manjunath Kondaiah @ 2010-10-12 5:36 UTC (permalink / raw)
To: G, Manjunath Kondaiah, linux-omap@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, Samuel Ortiz, Tony Lindgren,
Menon, Nishanth
Hi Samuel,
> -----Original Message-----
> From: linux-omap-owner@vger.kernel.org
> [mailto:linux-omap-owner@vger.kernel.org] On Behalf Of G,
> Manjunath Kondaiah
> Sent: Wednesday, October 06, 2010 3:27 AM
> To: linux-omap@vger.kernel.org
> Cc: linux-arm-kernel@lists.infradead.org; Samuel Ortiz; Tony
> Lindgren; Menon, Nishanth
> Subject: [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
>
> Fixes following sparse warnings for twl4030 and twl6030 irq files.
>
>
If there are no further comments, can you please push this patch?
-Manjunath
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
2010-10-05 21:56 ` [PATCH v3] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
2010-10-12 5:36 ` G, Manjunath Kondaiah
@ 2010-10-19 9:06 ` Samuel Ortiz
2010-10-19 9:28 ` Uwe Kleine-König
1 sibling, 1 reply; 11+ messages in thread
From: Samuel Ortiz @ 2010-10-19 9:06 UTC (permalink / raw)
To: G, Manjunath Kondaiah
Cc: linux-omap, linux-arm-kernel, Tony Lindgren, Nishanth Menon
Hi Manjunath,
On Wed, Oct 06, 2010 at 03:26:59AM +0530, G, Manjunath Kondaiah wrote:
> Fixes following sparse warnings for twl4030 and twl6030 irq files.
>
> drivers/mfd/twl4030-irq.c:783:5: warning: symbol 'twl4030_init_irq' was not declared. Should it be static?
> drivers/mfd/twl4030-irq.c:863:5: warning: symbol 'twl4030_exit_irq' was not declared. Should it be static?
> drivers/mfd/twl4030-irq.c:873:5: warning: symbol 'twl4030_init_chip_irq' was not declared. Should it be static?
>
> drivers/mfd/twl6030-irq.c:226:5: warning: symbol 'twl6030_init_irq' was not declared. Should it be static?
> drivers/mfd/twl6030-irq.c:290:5: warning: symbol 'twl6030_exit_irq' was not declared. Should it be static?
>
Patch applied, thanks.
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
2010-10-19 9:06 ` Samuel Ortiz
@ 2010-10-19 9:28 ` Uwe Kleine-König
2010-10-19 10:33 ` Samuel Ortiz
0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2010-10-19 9:28 UTC (permalink / raw)
To: Samuel Ortiz
Cc: G, Manjunath Kondaiah, Tony Lindgren, Nishanth Menon, linux-omap,
linux-arm-kernel
On Tue, Oct 19, 2010 at 11:06:14AM +0200, Samuel Ortiz wrote:
> Hi Manjunath,
>
> On Wed, Oct 06, 2010 at 03:26:59AM +0530, G, Manjunath Kondaiah wrote:
> > Fixes following sparse warnings for twl4030 and twl6030 irq files.
> >
> > drivers/mfd/twl4030-irq.c:783:5: warning: symbol 'twl4030_init_irq' was not declared. Should it be static?
> > drivers/mfd/twl4030-irq.c:863:5: warning: symbol 'twl4030_exit_irq' was not declared. Should it be static?
> > drivers/mfd/twl4030-irq.c:873:5: warning: symbol 'twl4030_init_chip_irq' was not declared. Should it be static?
> >
> > drivers/mfd/twl6030-irq.c:226:5: warning: symbol 'twl6030_init_irq' was not declared. Should it be static?
> > drivers/mfd/twl6030-irq.c:290:5: warning: symbol 'twl6030_exit_irq' was not declared. Should it be static?
> >
> Patch applied, thanks.
I didn't get the original patch, so I just now noticed the typo in the
Subject. You might want to do s/fucntion/function/
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3] TWL IRQ: Fix fucntion declaration warnings
2010-10-19 9:28 ` Uwe Kleine-König
@ 2010-10-19 10:33 ` Samuel Ortiz
0 siblings, 0 replies; 11+ messages in thread
From: Samuel Ortiz @ 2010-10-19 10:33 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: G, Manjunath Kondaiah, Tony Lindgren, Nishanth Menon, linux-omap,
linux-arm-kernel
Hi Uwe,
On Tue, Oct 19, 2010 at 11:28:16AM +0200, Uwe Kleine-König wrote:
> On Tue, Oct 19, 2010 at 11:06:14AM +0200, Samuel Ortiz wrote:
> > Hi Manjunath,
> >
> > On Wed, Oct 06, 2010 at 03:26:59AM +0530, G, Manjunath Kondaiah wrote:
> > > Fixes following sparse warnings for twl4030 and twl6030 irq files.
> > >
> > > drivers/mfd/twl4030-irq.c:783:5: warning: symbol 'twl4030_init_irq' was not declared. Should it be static?
> > > drivers/mfd/twl4030-irq.c:863:5: warning: symbol 'twl4030_exit_irq' was not declared. Should it be static?
> > > drivers/mfd/twl4030-irq.c:873:5: warning: symbol 'twl4030_init_chip_irq' was not declared. Should it be static?
> > >
> > > drivers/mfd/twl6030-irq.c:226:5: warning: symbol 'twl6030_init_irq' was not declared. Should it be static?
> > > drivers/mfd/twl6030-irq.c:290:5: warning: symbol 'twl6030_exit_irq' was not declared. Should it be static?
> > >
> > Patch applied, thanks.
> I didn't get the original patch, so I just now noticed the typo in the
> Subject. You might want to do s/fucntion/function/
Yes, I noticed as well and fixed it, thanks.
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2010-10-19 10:33 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-05 21:56 [PATCH v3] OMAP: NAND: Fix static declaration warning G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2: onenand: Fix static function warnings G, Manjunath Kondaiah
2010-10-05 21:56 ` [PATCH v3] OMAP2/3: NAND: Convert write/read functions to raw read/write G, Manjunath Kondaiah
2010-10-11 18:59 ` Artem Bityutskiy
2010-10-05 21:56 ` [PATCH v3] TWL IRQ: Fix fucntion declaration warnings G, Manjunath Kondaiah
2010-10-12 5:36 ` G, Manjunath Kondaiah
2010-10-19 9:06 ` Samuel Ortiz
2010-10-19 9:28 ` Uwe Kleine-König
2010-10-19 10:33 ` Samuel Ortiz
2010-10-07 17:35 ` [PATCH v3] OMAP: NAND: Fix static declaration warning Vimal Singh
2010-10-11 18:58 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox