aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2015-01-25 15:20:39 +0000
committerImre Kaloz <kaloz@openwrt.org>2015-01-25 15:20:39 +0000
commitd26694243af236fed09a4b38f3cc68e40ad063b5 (patch)
treedf356ae59718ae0996986ccb61155243098dbc3f /target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch
parenta46bb6ec6a0ed6eb56dc2f4551a57e63a7292753 (diff)
downloadupstream-d26694243af236fed09a4b38f3cc68e40ad063b5.tar.gz
upstream-d26694243af236fed09a4b38f3cc68e40ad063b5.tar.bz2
upstream-d26694243af236fed09a4b38f3cc68e40ad063b5.zip
generic: add preliminary 3.19 support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 44126
Diffstat (limited to 'target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch')
-rw-r--r--target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch b/target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch
new file mode 100644
index 0000000000..6a2092ce20
--- /dev/null
+++ b/target/linux/generic/patches-3.19/451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch
@@ -0,0 +1,11 @@
+--- a/drivers/mtd/nand/nand_ecc.c
++++ b/drivers/mtd/nand/nand_ecc.c
+@@ -507,7 +507,7 @@ int __nand_correct_data(unsigned char *b
+ return 1; /* error in ECC data; no action needed */
+
+ pr_err("%s: uncorrectable ECC error\n", __func__);
+- return -1;
++ return -EBADMSG;
+ }
+ EXPORT_SYMBOL(__nand_correct_data);
+