Re: [PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2021-01-18 Thread Sean Nyekjaer
On 04/01/2021 12.15, Miquel Raynal wrote: Hi Sean, Sean Nyekjaer wrote on Mon, 4 Jan 2021 11:50:10 +0100: On 04/01/2021 11.35, Miquel Raynal wrote: On Mon, 2020-12-21 at 10:00:13 UTC, Sean Nyekjaer wrote: Re-add the multiply by 8 to "step * eccsize" to correct the destination bit offset

Re: [PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2021-01-18 Thread Miquel Raynal
Hi Sean, Sean Nyekjaer wrote on Mon, 18 Jan 2021 12:07:01 +0100: > On 04/01/2021 12.15, Miquel Raynal wrote: > > Hi Sean, > > > > Sean Nyekjaer wrote on Mon, 4 Jan 2021 11:50:10 +0100: > > > >> On 04/01/2021 11.35, Miquel Raynal wrote: > >>> On Mon, 2020-12-21 at 10:00:13 UTC, Sean Nyekjaer

Re: [PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2021-01-04 Thread Miquel Raynal
Hi Sean, Sean Nyekjaer wrote on Mon, 4 Jan 2021 11:50:10 +0100: > On 04/01/2021 11.35, Miquel Raynal wrote: > > On Mon, 2020-12-21 at 10:00:13 UTC, Sean Nyekjaer wrote: > >> Re-add the multiply by 8 to "step * eccsize" to correct the destination > >> bit offset > >> when extracting the data p

Re: [PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2021-01-04 Thread Sean Nyekjaer
On 04/01/2021 11.35, Miquel Raynal wrote: On Mon, 2020-12-21 at 10:00:13 UTC, Sean Nyekjaer wrote: Re-add the multiply by 8 to "step * eccsize" to correct the destination bit offset when extracting the data payload in gpmi_ecc_read_page_raw(). Fixes: e5e5631cc889 ("mtd: rawnand: gpmi: Use n

Re: [PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2021-01-04 Thread Miquel Raynal
On Mon, 2020-12-21 at 10:00:13 UTC, Sean Nyekjaer wrote: > Re-add the multiply by 8 to "step * eccsize" to correct the destination bit > offset > when extracting the data payload in gpmi_ecc_read_page_raw(). > > Fixes: e5e5631cc889 ("mtd: rawnand: gpmi: Use nand_extract_bits()") > Cc: sta...@vger

[PATCH] mtd: rawnand: gpmi: fix dst bit offset when extracting raw payload

2020-12-21 Thread Sean Nyekjaer
Re-add the multiply by 8 to "step * eccsize" to correct the destination bit offset when extracting the data payload in gpmi_ecc_read_page_raw(). Fixes: e5e5631cc889 ("mtd: rawnand: gpmi: Use nand_extract_bits()") Cc: sta...@vger.kernel.org Reported-by: Martin Hundebøll Signed-off-by: Sean Nyekja