aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-05-15 19:16:47 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-05-15 19:16:47 +0000
commit0a0a8bb2f8ad354ca1de9794d218b5c6839f71ff (patch)
tree0d6f69b5977f9d6a5150f06b5b13aad7b2d483fa /target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch
parent6f2a3f464e7e37eac4f64edb411d2ba070631e43 (diff)
downloadupstream-0a0a8bb2f8ad354ca1de9794d218b5c6839f71ff.tar.gz
upstream-0a0a8bb2f8ad354ca1de9794d218b5c6839f71ff.tar.bz2
upstream-0a0a8bb2f8ad354ca1de9794d218b5c6839f71ff.zip
add static mtd map for the WBD-111
SVN-Revision: 15874
Diffstat (limited to 'target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch')
-rw-r--r--target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch b/target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch
new file mode 100644
index 0000000000..887dab0b7d
--- /dev/null
+++ b/target/linux/gemini/patches/100-mtd-physmap-try-static-partitions-first.patch
@@ -0,0 +1,30 @@
+--- a/drivers/mtd/maps/physmap.c
++++ b/drivers/mtd/maps/physmap.c
+@@ -170,6 +170,13 @@ static int physmap_flash_probe(struct pl
+ goto err_out;
+
+ #ifdef CONFIG_MTD_PARTITIONS
++ if (physmap_data->nr_parts) {
++ printk(KERN_NOTICE "Using physmap partition information\n");
++ add_mtd_partitions(info->cmtd, physmap_data->parts,
++ physmap_data->nr_parts);
++ return 0;
++ }
++
+ err = parse_mtd_partitions(info->cmtd, part_probe_types,
+ &info->parts, 0);
+ if (err > 0) {
+@@ -177,13 +184,6 @@ static int physmap_flash_probe(struct pl
+ info->nr_parts = err;
+ return 0;
+ }
+-
+- if (physmap_data->nr_parts) {
+- printk(KERN_NOTICE "Using physmap partition information\n");
+- add_mtd_partitions(info->cmtd, physmap_data->parts,
+- physmap_data->nr_parts);
+- return 0;
+- }
+ #endif
+
+ add_mtd_device(info->cmtd);