945a704fab
All modification made by update_kernel.sh in a fresh clone without existing toolchains. Build system: x86_64 Build-tested: ipq806x/R7800, bcm27xx/bcm2711 Run-tested: ipq806x/R7800 No dmesg regressions, everything functional Signed-off-by: John Audia <graysky@archlinux.us> Tested-by: Curtis Deptuck <curtdept@me.com> [x86/64]
32 lines
913 B
Diff
32 lines
913 B
Diff
From b341f120cfc9ca1dfd48364b7f36ac2c1fbdea43 Mon Sep 17 00:00:00 2001
|
|
From: Xiangsheng Hou <xiangsheng.hou@mediatek.com>
|
|
Date: Wed, 3 Apr 2019 16:30:01 +0800
|
|
Subject: [PATCH 3/6] mtd: spinand: disable on-die ECC
|
|
|
|
Change-Id: I9745adaed5295202fabbe8ab8947885c57a5b847
|
|
Signed-off-by: Xiangsheng Hou <xiangsheng.hou@mediatek.com>
|
|
---
|
|
drivers/mtd/nand/spi/core.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/mtd/nand/spi/core.c
|
|
+++ b/drivers/mtd/nand/spi/core.c
|
|
@@ -491,7 +491,7 @@ static int spinand_mtd_read(struct mtd_i
|
|
int ret = 0;
|
|
|
|
if (ops->mode != MTD_OPS_RAW && spinand->eccinfo.ooblayout)
|
|
- enable_ecc = true;
|
|
+ enable_ecc = false;
|
|
|
|
mutex_lock(&spinand->lock);
|
|
|
|
@@ -539,7 +539,7 @@ static int spinand_mtd_write(struct mtd_
|
|
int ret = 0;
|
|
|
|
if (ops->mode != MTD_OPS_RAW && mtd->ooblayout)
|
|
- enable_ecc = true;
|
|
+ enable_ecc = false;
|
|
|
|
mutex_lock(&spinand->lock);
|
|
|