lkml.org 
[lkml]   [2016]   [Feb]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 04/17] drivers:mtd:nand:enable dual plane page program function
Hi Bean,

[auto build test ERROR on v4.5-rc2]
[also build test ERROR on next-20160201]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url: https://github.com/0day-ci/linux/commits/Bean-Huo/Add-a-bakvol-module-in-UBI-layer-for-MLC-paired-page-power-loss-issue/20160202-104450
config: x86_64-randconfig-x012-201605 (attached as .config)
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64

All errors (new ones prefixed by >>):

drivers/mtd/nand/nand_base.c: In function 'nand_write_plane_page':
>> drivers/mtd/nand/nand_base.c:2463:12: error: too few arguments to function 'chip->ecc.write_page_raw'
status = chip->ecc.write_page_raw(mtd, chip, buf,
^
>> drivers/mtd/nand/nand_base.c:2466:12: error: too few arguments to function 'chip->ecc.write_subpage'
status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
^
>> drivers/mtd/nand/nand_base.c:2469:12: error: too few arguments to function 'chip->ecc.write_page'
status = chip->ecc.write_page(mtd, chip, buf, oob_required);
^
drivers/mtd/nand/nand_base.c: At top level:
drivers/mtd/nand/nand_base.c:3228:12: warning: 'nand_dual_plane_write_oob' defined but not used [-Wunused-function]
static int nand_dual_plane_write_oob(struct mtd_info *mtd, loff_t to_plane0,
^

vim +2463 drivers/mtd/nand/nand_base.c

2457 else
2458 subpage = 0;
2459
2460 chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
2461
2462 if (unlikely(raw))
> 2463 status = chip->ecc.write_page_raw(mtd, chip, buf,
2464 oob_required);
2465 else if (subpage)
> 2466 status = chip->ecc.write_subpage(mtd, chip, offset, data_len,
2467 buf, oob_required);
2468 else
> 2469 status = chip->ecc.write_page(mtd, chip, buf, oob_required);
2470
2471 if (status < 0)
2472 return status;

---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[unhandled content-type:application/octet-stream]
\
 
 \ /
  Last update: 2016-02-02 04:21    [W:0.117 / U:0.300 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site