diff options
author | Luka Perkov <luka@openwrt.org> | 2014-06-29 23:29:57 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-06-29 23:29:57 +0000 |
commit | 26b06940a9bd894c1a21d76b160a3daea0843417 (patch) | |
tree | a733913cc70070f76d2d10693c57a9f97e11ba5e /target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch | |
parent | be2a05778792e34afffff28a28091acfb2984b63 (diff) | |
download | upstream-26b06940a9bd894c1a21d76b160a3daea0843417.tar.gz upstream-26b06940a9bd894c1a21d76b160a3daea0843417.tar.bz2 upstream-26b06940a9bd894c1a21d76b160a3daea0843417.zip |
mvebu: drop 3.10 support
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 41406
Diffstat (limited to 'target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch')
-rw-r--r-- | target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch b/target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch deleted file mode 100644 index cb59ccbd1c..0000000000 --- a/target/linux/mvebu/patches-3.10/0149-mtd-nand-pxa3xx-Fix-SEQIN-column-address-set.patch +++ /dev/null @@ -1,32 +0,0 @@ -From d5c9b013c71a570737353270f94b9a52639fcea1 Mon Sep 17 00:00:00 2001 -From: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> -Date: Thu, 14 Nov 2013 18:25:35 -0300 -Subject: [PATCH 149/203] mtd: nand: pxa3xx: Fix SEQIN column address set - -This commit adds support page programming with a non-zero "column" -address setting. This is important to support OOB writing, through -command sequences such as: - - cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, ofs); - write_buf(mtd, oob_buf, 6); - cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); - -Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> -Tested-by: Daniel Mack <zonque@gmail.com> -Signed-off-by: Brian Norris <computersforpeace@gmail.com> ---- - drivers/mtd/nand/pxa3xx_nand.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - ---- a/drivers/mtd/nand/pxa3xx_nand.c -+++ b/drivers/mtd/nand/pxa3xx_nand.c -@@ -694,7 +694,8 @@ static int prepare_set_command(struct px - - case NAND_CMD_SEQIN: - -- set_command_address(info, mtd->writesize, column, page_addr); -+ info->buf_start = column; -+ set_command_address(info, mtd->writesize, 0, page_addr); - break; - - case NAND_CMD_PAGEPROG: |