From 26b06940a9bd894c1a21d76b160a3daea0843417 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Sun, 29 Jun 2014 23:29:57 +0000 Subject: mvebu: drop 3.10 support Signed-off-by: Luka Perkov SVN-Revision: 41406 --- ...mtd-nand-pxa3xx-Add-a-local-loop-variable.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 target/linux/mvebu/patches-3.10/0119-mtd-nand-pxa3xx-Add-a-local-loop-variable.patch (limited to 'target/linux/mvebu/patches-3.10/0119-mtd-nand-pxa3xx-Add-a-local-loop-variable.patch') diff --git a/target/linux/mvebu/patches-3.10/0119-mtd-nand-pxa3xx-Add-a-local-loop-variable.patch b/target/linux/mvebu/patches-3.10/0119-mtd-nand-pxa3xx-Add-a-local-loop-variable.patch deleted file mode 100644 index f25a3611f4..0000000000 --- a/target/linux/mvebu/patches-3.10/0119-mtd-nand-pxa3xx-Add-a-local-loop-variable.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 9f27a3899318ef0c4c147ed2d84cfbfb339d9bb6 Mon Sep 17 00:00:00 2001 -From: Ezequiel Garcia -Date: Mon, 12 Aug 2013 14:14:52 -0300 -Subject: [PATCH 119/203] mtd: nand: pxa3xx: Add a local loop variable - -This is just a cosmetic change, to make the code more readable. - -Signed-off-by: Ezequiel Garcia -Tested-by: Daniel Mack -Signed-off-by: Brian Norris -Signed-off-by: David Woodhouse ---- - drivers/mtd/nand/pxa3xx_nand.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - ---- a/drivers/mtd/nand/pxa3xx_nand.c -+++ b/drivers/mtd/nand/pxa3xx_nand.c -@@ -1320,8 +1320,9 @@ static int pxa3xx_nand_probe(struct plat - info->variant = pxa3xx_nand_get_variant(pdev); - probe_success = 0; - for (cs = 0; cs < pdata->num_cs; cs++) { -+ struct mtd_info *mtd = info->host[cs]->mtd; - info->cs = cs; -- ret = pxa3xx_nand_scan(info->host[cs]->mtd); -+ ret = pxa3xx_nand_scan(mtd); - if (ret) { - dev_warn(&pdev->dev, "failed to scan nand at cs %d\n", - cs); -@@ -1329,7 +1330,7 @@ static int pxa3xx_nand_probe(struct plat - } - - ppdata.of_node = pdev->dev.of_node; -- ret = mtd_device_parse_register(info->host[cs]->mtd, NULL, -+ ret = mtd_device_parse_register(mtd, NULL, - &ppdata, pdata->parts[cs], - pdata->nr_parts[cs]); - if (!ret) -- cgit v1.2.3