1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 18:34:16 +03:00
openwrt-xburst/target/linux/generic/patches-2.6.39/474-mtd_concat_sync_fix.patch

13 lines
296 B
Diff
Raw Normal View History

--- 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);
}
}