summaryrefslogtreecommitdiffstats
path: root/target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-02-04 15:23:10 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-02-04 15:23:10 +0000
commitb97aee1ee851c6ce0f48e9c231a8152c1151dbe4 (patch)
tree3f5f5e1f2c6c8577ee1388dcec0bf4ba7d7565bd /target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch
parentc41002971aeecd78e93ce553028f7cc01c4de777 (diff)
downloadmaster-31e0f0ae-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.tar.gz
master-31e0f0ae-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.tar.bz2
master-31e0f0ae-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.zip
coldfire: R.I.P.
The target still uses 2.6.38. The support of that kernel version has been removed ~9 months ago. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35489
Diffstat (limited to 'target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch')
-rw-r--r--target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch b/target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch
deleted file mode 100644
index 3d1eabc239..0000000000
--- a/target/linux/coldfire/patches/032-Change-some-jffs2-warning-to-debug-info.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 8834b24adf7efc8a50fcbc153910276b355fb4e9 Mon Sep 17 00:00:00 2001
-From: Alison Wang <b18965@freescale.com>
-Date: Thu, 4 Aug 2011 09:59:47 +0800
-Subject: [PATCH 32/52] Change some jffs2 warning to debug info
-
-As the NFC issue, the jffs2 verify buf may fail sometimes.
-This patch move this kind of warning to debug information.
-
-Signed-off-by: Alison Wang <b18965@freescale.com>
----
- fs/jffs2/wbuf.c | 8 ++++----
- 1 files changed, 4 insertions(+), 4 deletions(-)
-
---- a/fs/jffs2/wbuf.c
-+++ b/fs/jffs2/wbuf.c
-@@ -246,13 +246,13 @@ static int jffs2_verify_write(struct jff
- else
- eccstr = "OK or unused";
-
-- printk(KERN_WARNING "Write verify error (ECC %s) at %08x. Wrote:\n",
-+ printk(KERN_DEBUG "Write verify error (ECC %s) at %08x. Wrote:\n",
- eccstr, c->wbuf_ofs);
-- print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1,
-+ print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 1,
- c->wbuf, c->wbuf_pagesize, 0);
-
-- printk(KERN_WARNING "Read back:\n");
-- print_hex_dump(KERN_WARNING, "", DUMP_PREFIX_OFFSET, 16, 1,
-+ printk(KERN_DEBUG "Read back:\n");
-+ print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 1,
- c->wbuf_verify, c->wbuf_pagesize, 0);
-
- return -EIO;