From: Felipe Balbi <[EMAIL PROTECTED]>

Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]>
---
 drivers/mtd/nand/omap2.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 2ede116..170f235 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -187,12 +187,12 @@ static void omap_hwcontrol(struct mtd_info *mtd, int cmd, 
unsigned int ctrl)
 }
 
 /*
- * omap_read_buf16 - read data from NAND controller into buffer
+ * __raw_read_buf16 - read data from NAND controller into buffer
  * @mtd: MTD device structure
  * @buf: buffer to store date
  * @len: number of bytes to read
  */
-static void omap_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
+static void __raw_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
 {
        struct nand_chip *nand = mtd->priv;
 
@@ -200,12 +200,12 @@ static void omap_read_buf16(struct mtd_info *mtd, u_char 
*buf, int len)
 }
 
 /*
- * omap_write_buf16 - write buffer to NAND controller
+ * __raw_write_buf16 - write buffer to NAND controller
  * @mtd: MTD device structure
  * @buf: data buffer
  * @len: number of bytes to write
  */
-static void omap_write_buf16(struct mtd_info *mtd, const u_char * buf, int len)
+static void __raw_write_buf16(struct mtd_info *mtd, const u_char * buf, int 
len)
 {
        struct omap_nand_info *info = container_of(mtd,
                                                struct omap_nand_info, mtd);
@@ -641,8 +641,8 @@ static int __devinit omap_nand_probe(struct platform_device 
*pdev)
 
        /* REVISIT:  only supports 16-bit NAND flash */
 
-       info->nand.read_buf   = omap_read_buf16;
-       info->nand.write_buf  = omap_write_buf16;
+       info->nand.read_buf   = __raw_read_buf16;
+       info->nand.write_buf  = __raw_write_buf16;
        info->nand.verify_buf = omap_verify_buf;
 
        /*
-- 
1.6.0.2.307.gc427

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

Reply via email to