summaryrefslogtreecommitdiff
path: root/recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch')
-rw-r--r--recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch b/recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch
deleted file mode 100644
index 83652c9..0000000
--- a/recipes-kernel/linux/linux-toradex-rt-3.14.28/0002-fix-build-with-rt-enabled.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix build error when PREEMPT_RT_FULL is enabled
-
-Upstream-Status: Pending
-
-Signed-off-by: Jacob Kroon <jacob.kroon@mikrodidakt.se>
-
-Index: git/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
-===================================================================
---- git.orig/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
-+++ git/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c
-@@ -3266,7 +3266,7 @@ gckOS_CreateMutex(
- gcmkONERROR(gckOS_Allocate(Os, gcmSIZEOF(struct mutex), Mutex));
-
- /* Initialize the mutex. */
-- mutex_init(*Mutex);
-+ mutex_init((struct mutex*)*Mutex);
-
- /* Return status. */
- gcmkFOOTER_ARG("*Mutex=0x%X", *Mutex);