summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch')
-rw-r--r--target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch b/target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch
deleted file mode 100644
index 49c7bf6b22..0000000000
--- a/target/linux/brcm2708/patches-3.10/0091-ARM-7819-1-fiq-Cast-the-first-argument-of-flush_icac.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From cfd79481c07339df7d30fe15011dbfbf994c3503 Mon Sep 17 00:00:00 2001
-From: Fabio Estevam <festevam@gmail.com>
-Date: Fri, 16 Aug 2013 12:55:56 +0100
-Subject: [PATCH 091/196] ARM: 7819/1: fiq: Cast the first argument of
- flush_icache_range()
-
-Commit 2ba85e7af4 (ARM: Fix FIQ code on VIVT CPUs) causes the following build warning:
-
-arch/arm/kernel/fiq.c:92:3: warning: passing argument 1 of 'cpu_cache.coherent_kern_range' makes integer from pointer without a cast [enabled by default]
-
-Cast it as '(unsigned long)base' to avoid the warning.
-
-Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
----
- arch/arm/kernel/fiq.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/arch/arm/kernel/fiq.c b/arch/arm/kernel/fiq.c
-index 9ac7935..aac11f8 100644
---- a/arch/arm/kernel/fiq.c
-+++ b/arch/arm/kernel/fiq.c
-@@ -89,7 +89,8 @@ void set_fiq_handler(void *start, unsigned int length)
-
- memcpy(base + offset, start, length);
- if (!cache_is_vipt_nonaliasing())
-- flush_icache_range(base + offset, offset + length);
-+ flush_icache_range((unsigned long)base + offset, offset +
-+ length);
- flush_icache_range(0xffff0000 + offset, 0xffff0000 + offset + length);
- }
-
---
-1.9.1
-