diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-05 09:51:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-12-05 09:51:25 +0000 |
commit | fff859a1f6a7a319053e4efce787b88bc76985ab (patch) | |
tree | 6ca955ea78af5b99d8ac17e57747b6a1e69027d5 /target/linux/lantiq/patches-3.18/0013-MTD-lantiq-xway-fix-invalid-operator.patch | |
parent | ba0ba1e1f5b403e83a8cbdd90ba065e626318e30 (diff) | |
download | upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.tar.gz upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.tar.bz2 upstream-fff859a1f6a7a319053e4efce787b88bc76985ab.zip |
lantiq: remove 3.18 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 47774
Diffstat (limited to 'target/linux/lantiq/patches-3.18/0013-MTD-lantiq-xway-fix-invalid-operator.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.18/0013-MTD-lantiq-xway-fix-invalid-operator.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/lantiq/patches-3.18/0013-MTD-lantiq-xway-fix-invalid-operator.patch b/target/linux/lantiq/patches-3.18/0013-MTD-lantiq-xway-fix-invalid-operator.patch deleted file mode 100644 index c6d3819c2f..0000000000 --- a/target/linux/lantiq/patches-3.18/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 <blogic@openwrt.org> -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 <blogic@openwrt.org> ---- - 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; |