Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a612c2ae authored by Armando Visconti's avatar Armando Visconti Committed by David Woodhouse
Browse files

mtd: fsmc: fixed data abort inside change_bit()



Since change_bit() requires a (unsigned int *) as second arg,
the correct definition of err_idx[] array declared as
local variable of fsmc_correct_data() is the following:

	u32 err_idx[8];

Signed-off-by: default avatarArmando Visconti <armando.visconti@st.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 02bfc4eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -604,7 +604,7 @@ static int fsmc_correct_data(struct mtd_info *mtd, uint8_t *dat,
	struct nand_chip *chip = mtd->priv;
	struct fsmc_regs *regs = host->regs_va;
	unsigned int bank = host->bank;
	uint16_t err_idx[8];
	uint32_t err_idx[8];
	uint64_t ecc_data[2];
	uint32_t num_err, i;