summaryrefslogtreecommitdiff
path: root/target/linux/patches/3.11.10/arm-spitz.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-17 18:21:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-17 18:21:12 +0200
commit0776cdbf335240a1b2a1eec89cabf912d40a01b5 (patch)
tree93a04ea02bc64bc327d3aebde20c252225b21332 /target/linux/patches/3.11.10/arm-spitz.patch
parent11616aa25b1e2c9b131c408ceb219ae059f093dd (diff)
bump lts kernels, add yaffs2 kernel patch
Diffstat (limited to 'target/linux/patches/3.11.10/arm-spitz.patch')
-rw-r--r--target/linux/patches/3.11.10/arm-spitz.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/patches/3.11.10/arm-spitz.patch b/target/linux/patches/3.11.10/arm-spitz.patch
deleted file mode 100644
index aea848244..000000000
--- a/target/linux/patches/3.11.10/arm-spitz.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-http://lists.infradead.org/pipermail/linux-arm-kernel/2013-September/198444.html
-
-diff -Nur linux-3.9.11.orig/arch/arm/common/sharpsl_param.c linux-3.9.11/arch/arm/common/sharpsl_param.c
---- linux-3.9.11.orig/arch/arm/common/sharpsl_param.c 2013-07-21 02:16:17.000000000 +0200
-+++ linux-3.9.11/arch/arm/common/sharpsl_param.c 2013-09-18 16:27:10.000000000 +0200
-@@ -26,6 +26,7 @@
- #ifdef CONFIG_ARCH_SA1100
- #define PARAM_BASE 0xe8ffc000
- #else
-+#include <asm/memory.h>
- #define PARAM_BASE 0xa0000a00
- #endif
- #define MAGIC_CHG(a,b,c,d) ( ( d << 24 ) | ( c << 16 ) | ( b << 8 ) | a )
-@@ -41,7 +42,12 @@
-
- void sharpsl_save_param(void)
- {
-- memcpy(&sharpsl_param, (void *)PARAM_BASE, sizeof(struct sharpsl_param_info));
-+#ifdef CONFIG_ARCH_SA1100
-+ void *param_start = (void *)PARAM_BASE;
-+#else
-+ void *param_start = phys_to_virt(PARAM_BASE);
-+#endif
-+ memcpy(&sharpsl_param, param_start, sizeof(struct sharpsl_param_info));
-
- if (sharpsl_param.comadj_keyword != COMADJ_MAGIC)
- sharpsl_param.comadj=-1;