diff mbox

[U-Boot,U-boot] mtd: nand: davinci_nand: update write_page function for keystone RBL

Message ID 1410031027-22695-1-git-send-email-ivan.khoronzhuk@ti.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Ivan Khoronzhuk Sept. 6, 2014, 7:17 p.m. UTC
After mtd was synced with Linux 3.14
(ff94bc40af3481d47546595ba73c136de6af6929)
the number of parameters for write_page function of nand_chip was
changed. The additional two var were needed for subpage write.
As keystone has no supbage write they are not needed. So correct
only function definition by upgrading it's parameter list.
That helps to get ritd of compilation warning.

Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
---
 drivers/mtd/nand/davinci_nand.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Tom Rini Sept. 17, 2014, 12:46 a.m. UTC | #1
On Sat, Sep 06, 2014 at 10:17:07PM +0300, Khoronzhuk, Ivan wrote:

> After mtd was synced with Linux 3.14
> (ff94bc40af3481d47546595ba73c136de6af6929)
> the number of parameters for write_page function of nand_chip was
> changed. The additional two var were needed for subpage write.
> As keystone has no supbage write they are not needed. So correct
> only function definition by upgrading it's parameter list.
> That helps to get ritd of compilation warning.
> 
> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
index 02a1130..41689b5 100644
--- a/drivers/mtd/nand/davinci_nand.c
+++ b/drivers/mtd/nand/davinci_nand.c
@@ -363,6 +363,7 @@  static struct nand_ecclayout nand_keystone_rbl_4bit_layout_oobfirst = {
  * @raw: use _raw version of write_page
  */
 static int nand_davinci_write_page(struct mtd_info *mtd, struct nand_chip *chip,
+				   uint32_t offset, int data_len,
 				   const uint8_t *buf, int oob_required,
 				   int page, int cached, int raw)
 {