Re: [PATCH] mtd: spinand: Fix display of unknown raw ID

2023-02-27 Thread Michael Nazzareno Trimarchi
Hi On Tue, Feb 14, 2023 at 11:52 AM Michael Nazzareno Trimarchi wrote: > > Hi > > On Tue, Feb 14, 2023 at 9:14 AM Frieder Schrempf > wrote: > > > > On 13.02.23 18:30, Patrice Chotard wrote: > > > In case ID is not found in manufacturer table, the raw ID is > > > printed using %*phN format which

Re: [PATCH] mtd: spinand: Fix display of unknown raw ID

2023-02-14 Thread Michael Nazzareno Trimarchi
Hi On Tue, Feb 14, 2023 at 9:14 AM Frieder Schrempf wrote: > > On 13.02.23 18:30, Patrice Chotard wrote: > > In case ID is not found in manufacturer table, the raw ID is > > printed using %*phN format which is not supported by lib/vsprintf.c. > > The information displayed doesn't reflect the raw

Re: [PATCH] mtd: spinand: Fix display of unknown raw ID

2023-02-14 Thread Frieder Schrempf
On 13.02.23 18:30, Patrice Chotard wrote: > In case ID is not found in manufacturer table, the raw ID is > printed using %*phN format which is not supported by lib/vsprintf.c. > The information displayed doesn't reflect the raw ID return by the > unknown spi-nand. > > Use %02x format instead, as d

[PATCH] mtd: spinand: Fix display of unknown raw ID

2023-02-13 Thread Patrice Chotard
In case ID is not found in manufacturer table, the raw ID is printed using %*phN format which is not supported by lib/vsprintf.c. The information displayed doesn't reflect the raw ID return by the unknown spi-nand. Use %02x format instead, as done in spi-nor-core.c. For example, before this patch