On Tue, 2009-12-29 at 16:04 +0530, Sanjeev Premi wrote: > This patch fixes following compile warning: > > drivers/mtd/nand/omap2.c:508: warning: passing argumen > t 2 of 'omap_nand_dma_transfer' discards qualifiers fr > om pointer target type > > Signed-off-by: Sanjeev Premi <premi@xxxxxx> > --- > drivers/mtd/nand/omap2.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c > index 1bb799f..08c193c 100644 > --- a/drivers/mtd/nand/omap2.c > +++ b/drivers/mtd/nand/omap2.c > @@ -505,7 +505,7 @@ static void omap_write_buf_dma_pref(struct mtd_info *mtd, > omap_write_buf_pref(mtd, buf, len); > else > /* start transfer in DMA mode */ > - omap_nand_dma_transfer(mtd, buf, len, 0x1); > + omap_nand_dma_transfer(mtd, (void *)buf, len, 0x1); > } Pushed this patch to my l2-mtd-2.6/dunno tree. -- Best Regards, Artem Bityutskiy (Артём Битюцкий) -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html