summaryrefslogtreecommitdiff
path: root/target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-12-17 17:10:04 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-12-17 17:10:04 +0000
commit0d01356fc69e536f51d8694689bf1b55ea4b508d (patch)
tree55b8af1c9b2364575dd7202ba4bc5dc877ebe169 /target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch
parent8390b7dc9b1dd45dfc3a605c92ba3ff03ff0ff59 (diff)
downloadmtk-20170518-0d01356fc69e536f51d8694689bf1b55ea4b508d.zip
mtk-20170518-0d01356fc69e536f51d8694689bf1b55ea4b508d.tar.gz
mtk-20170518-0d01356fc69e536f51d8694689bf1b55ea4b508d.tar.bz2
generic: nuke 2.6.33 specific stuff, is not used by any platform
SVN-Revision: 24644
Diffstat (limited to 'target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch')
-rw-r--r--target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch b/target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch
deleted file mode 100644
index 16ce76c..0000000
--- a/target/linux/generic/patches-2.6.33/080-mtd_plat_nand_chip_fixup.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/include/linux/mtd/nand.h
-+++ b/include/linux/mtd/nand.h
-@@ -491,6 +491,7 @@ struct platform_nand_chip {
- int chip_delay;
- unsigned int options;
- const char **part_probe_types;
-+ int (*chip_fixup)(struct mtd_info *mtd);
- void (*set_parts)(uint64_t size,
- struct platform_nand_chip *chip);
- void *priv;
---- a/drivers/mtd/nand/plat_nand.c
-+++ b/drivers/mtd/nand/plat_nand.c
-@@ -91,7 +91,18 @@ static int __devinit plat_nand_probe(str
- }
-
- /* Scan to find existance of the device */
-- if (nand_scan(&data->mtd, 1)) {
-+ if (nand_scan_ident(&data->mtd, 1)) {
-+ res = -ENXIO;
-+ goto out;
-+ }
-+
-+ if (pdata->chip.chip_fixup) {
-+ res = pdata->chip.chip_fixup(&data->mtd);
-+ if (res)
-+ goto out;
-+ }
-+
-+ if (nand_scan_tail(&data->mtd)) {
- err = -ENXIO;
- goto out;
- }