summaryrefslogtreecommitdiff
path: root/meta/packages/linux/linux-omap2-git/fixes.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/linux/linux-omap2-git/fixes.patch')
-rw-r--r--meta/packages/linux/linux-omap2-git/fixes.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/packages/linux/linux-omap2-git/fixes.patch b/meta/packages/linux/linux-omap2-git/fixes.patch
deleted file mode 100644
index 847868278..000000000
--- a/meta/packages/linux/linux-omap2-git/fixes.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Index: git/include/asm-arm/processor.h
-===================================================================
---- git.orig/include/asm-arm/processor.h 2008-08-03 11:27:02.000000000 +0100
-+++ git/include/asm-arm/processor.h 2008-08-03 11:53:22.000000000 +0100
-@@ -109,14 +109,16 @@
- #if __LINUX_ARM_ARCH__ >= 5
-
- #define ARCH_HAS_PREFETCH
--static inline void prefetch(const void *ptr)
-+#define prefetch(ptr) __builtin_prefetch(ptr)
-+
-+/*static inline void prefetch(const void *ptr)
- {
- __asm__ __volatile__(
-- "pld\t%0"
-+ "pld\ta%0"
- :
-- : "o" (*(char *)ptr)
-+ : "p" (ptr)
- : "cc");
--}
-+}*/
-
- #define ARCH_HAS_PREFETCHW
- #define prefetchw(ptr) prefetch(ptr)