aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-06-01 02:23:22 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-06-01 02:23:22 +0000
commit56dd5c4388d44cc116841519b819acf2852fcf6c (patch)
tree88a8ece3c5f83a40059edd930a2022c315091dab /target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch
parent628cb35179da748c9358c79dff4f5944dd8bd596 (diff)
downloadupstream-56dd5c4388d44cc116841519b819acf2852fcf6c.tar.gz
upstream-56dd5c4388d44cc116841519b819acf2852fcf6c.tar.bz2
upstream-56dd5c4388d44cc116841519b819acf2852fcf6c.zip
fix a crash in mtd_concat when the .sync op is not implemented
SVN-Revision: 27074
Diffstat (limited to 'target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch')
-rw-r--r--target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch b/target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch
new file mode 100644
index 0000000000..4e3426b7bd
--- /dev/null
+++ b/target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch
@@ -0,0 +1,12 @@
+--- a/drivers/mtd/mtdconcat.c
++++ b/drivers/mtd/mtdconcat.c
+@@ -619,7 +619,8 @@ static void concat_sync(struct mtd_info
+
+ for (i = 0; i < concat->num_subdev; i++) {
+ struct mtd_info *subdev = concat->subdev[i];
+- subdev->sync(subdev);
++ if (subdev->sync)
++ subdev->sync(subdev);
+ }
+ }
+