summaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-29 07:36:43 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-04-29 07:36:43 +0000
commit0c3e51f31ceb672b391aa4b4086ab5e0edf07fc1 (patch)
tree15e272500401e7847d9ea7dc40a0fafb81f93c1d /target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch
parent71b94eaba41e5b7d038d3ad09a404316d9430ae5 (diff)
adm5120: merge 3.3 patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31511 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch')
-rw-r--r--target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch b/target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch
deleted file mode 100644
index f9ececf61..000000000
--- a/target/linux/adm5120/patches-3.3/a14-mtd-trxsplit-fixes.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/drivers/mtd/trxsplit.c
-+++ b/drivers/mtd/trxsplit.c
-@@ -144,7 +144,7 @@ static void trxsplit_create_partitions(s
- part = &trx_parts[i];
- part->name = "rootfs";
-
-- err = add_mtd_partitions(mtd, trx_parts, trx_nr_parts);
-+ err = mtd_device_register(mtd, trx_parts, trx_nr_parts);
- if (err) {
- printk(KERN_ALERT PFX "adding TRX partitions failed\n");
- return;
-@@ -159,7 +159,7 @@ static int trxsplit_refresh_partitions(s
- mtd->name, MTD_BLOCK_MAJOR, mtd->index);
-
- /* remove old partitions */
-- del_mtd_partitions(mtd);
-+ mtd_device_unregister(mtd);
-
- trxsplit_findtrx(mtd);
- if (!trx_mtd)