X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=target%2Flinux%2Flayerscape%2Fpatches-4.4%2F1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch;fp=target%2Flinux%2Flayerscape%2Fpatches-4.4%2F1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch;h=0000000000000000000000000000000000000000;hb=19951bbf57da87093f7bde25bad41571fbdaf4d9;hp=6ebbdb417def7896772736336503a74b22d2d652;hpb=e3f47958dd16137ea903ca3733435862d9f602ae;p=openwrt%2Fopenwrt.git diff --git a/target/linux/layerscape/patches-4.4/1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch b/target/linux/layerscape/patches-4.4/1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch deleted file mode 100644 index 6ebbdb417d..0000000000 --- a/target/linux/layerscape/patches-4.4/1083-mtd-spi-nor-Fix-error-message-with-unrecognized-JEDE.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 30e609daed95664824e95344e85c7eaedd1bfcf3 Mon Sep 17 00:00:00 2001 -From: Ricardo Ribalda -Date: Mon, 30 Nov 2015 20:41:17 +0100 -Subject: [PATCH 083/113] mtd: spi-nor: Fix error message with unrecognized - JEDEC - -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 -Signed-off-by: Brian Norris ---- - drivers/mtd/spi-nor/spi-nor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/mtd/spi-nor/spi-nor.c -+++ b/drivers/mtd/spi-nor/spi-nor.c -@@ -896,7 +896,7 @@ static const struct flash_info *spi_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); - }