diff mbox

[v2] spi/nor: Fix error message with unrecognized JEDEC

Message ID 1448912477-27057-1-git-send-email-ricardo.ribalda@gmail.com
State Accepted
Commit 9b9f1033da9166617c4a5cadfc12b23b465fb596
Headers show

Commit Message

Ricardo Ribalda Delgado Nov. 30, 2015, 7:41 p.m. UTC
The error message was:

m25p80 spi32766.0: unrecognized JEDEC id bytes: 00,  0,  0

The new error message:

m25p80 spi32766.0: unrecognized JEDEC id bytes: 00, 00, 00

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---

v2: Changes by Marek Vasut

Use %02 instead of %.2

 drivers/mtd/spi-nor/spi-nor.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Rafał Miłecki Nov. 30, 2015, 10:37 p.m. UTC | #1
On 30 November 2015 at 20:41, Ricardo Ribalda Delgado
<ricardo.ribalda@gmail.com> wrote:
> The error message was:
>
> m25p80 spi32766.0: unrecognized JEDEC id bytes: 00,  0,  0
>
> The new error message:
>
> m25p80 spi32766.0: unrecognized JEDEC id bytes: 00, 00, 00
>
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
> ---
>
> v2: Changes by Marek Vasut
>
> Use %02 instead of %.2
>
>  drivers/mtd/spi-nor/spi-nor.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
> index b7c038c75684..f8a9b77aac76 100644
> --- a/drivers/mtd/spi-nor/spi-nor.c
> +++ b/drivers/mtd/spi-nor/spi-nor.c
> @@ -890,7 +890,7 @@ static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
>                                 return &spi_nor_ids[tmp];
>                 }
>         }
> -       dev_err(nor->dev, "unrecognized JEDEC id bytes: %02x, %2x, %2x\n",
> +       dev_err(nor->dev, "unrecognized JEDEC id bytes: %02x, %02x, %02x\n",

Looks fine :)
Brian Norris Dec. 1, 2015, 6:40 p.m. UTC | #2
On Mon, Nov 30, 2015 at 08:41:17PM +0100, Ricardo Ribalda Delgado wrote:
> The error message was:
> 
> m25p80 spi32766.0: unrecognized JEDEC id bytes: 00,  0,  0
> 
> The new error message:
> 
> m25p80 spi32766.0: unrecognized JEDEC id bytes: 00, 00, 00
> 
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
> ---
> 
> v2: Changes by Marek Vasut

Pushed to l2-mtd.git
diff mbox

Patch

diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index b7c038c75684..f8a9b77aac76 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -890,7 +890,7 @@  static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
 				return &spi_nor_ids[tmp];
 		}
 	}
-	dev_err(nor->dev, "unrecognized JEDEC id bytes: %02x, %2x, %2x\n",
+	dev_err(nor->dev, "unrecognized JEDEC id bytes: %02x, %02x, %02x\n",
 		id[0], id[1], id[2]);
 	return ERR_PTR(-ENODEV);
 }