X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=target%2Flinux%2Flantiq%2Fpatches-4.1%2F0013-MTD-lantiq-xway-fix-invalid-operator.patch;fp=target%2Flinux%2Flantiq%2Fpatches-4.1%2F0013-MTD-lantiq-xway-fix-invalid-operator.patch;h=0000000000000000000000000000000000000000;hp=c6d3819c2f0647615013c423e2fd58fcc7b93031;hb=e7846156f23b109fd8789d60a4827171b06553a7;hpb=9b4b2b4e17f10492798b14f7bb7e943ad86b4515 diff --git a/target/linux/lantiq/patches-4.1/0013-MTD-lantiq-xway-fix-invalid-operator.patch b/target/linux/lantiq/patches-4.1/0013-MTD-lantiq-xway-fix-invalid-operator.patch deleted file mode 100644 index c6d3819c2f..0000000000 --- a/target/linux/lantiq/patches-4.1/0013-MTD-lantiq-xway-fix-invalid-operator.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 8e34da603f442624bb70e887d8f42064bb924224 Mon Sep 17 00:00:00 2001 -From: John Crispin -Date: Sun, 28 Jul 2013 18:03:54 +0200 -Subject: [PATCH 13/36] MTD: lantiq: xway: fix invalid operator - -xway_read_byte should use a logic or and not an add operator when working out -the nand address. - -Signed-off-by: John Crispin ---- - drivers/mtd/nand/xway_nand.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/mtd/nand/xway_nand.c -+++ b/drivers/mtd/nand/xway_nand.c -@@ -124,7 +124,7 @@ static unsigned char xway_read_byte(stru - int ret; - - spin_lock_irqsave(&ebu_lock, flags); -- ret = ltq_r8((void __iomem *)(nandaddr + NAND_READ_DATA)); -+ ret = ltq_r8((void __iomem *)(nandaddr | NAND_READ_DATA)); - spin_unlock_irqrestore(&ebu_lock, flags); - - return ret;