diff options
| author | Gary Thomas <gary@mlbassoc.com> | 2015-10-06 10:03:47 -0600 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-04-19 15:03:20 -0300 |
| commit | 6e12eca32dc1316689a74f929e334f02feac06ab (patch) | |
| tree | 3245277ccd3ce0d7b922adad1f6628af84f0d8d2 /recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch | |
| parent | aed74dcf5c43b5a7dd78ee7ec705558b947e34d4 (diff) | |
| download | meta-freescale-6e12eca32dc1316689a74f929e334f02feac06ab.tar.gz | |
kernel-module-imx-gpu-viv: Better work-around for change in name of busfreq-imx.h
The renaming of include/linux/busfreq-imx6.h to include/linux/busfreq-imx.h
is not consistent over the many kernel versions currently being built. This
changeset works around this inconsistency by creating a local symbolic link
to whatever file is actually present in the kernel sources.
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Diffstat (limited to 'recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch')
| -rw-r--r-- | recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch b/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch deleted file mode 100644 index 3dc06176f..000000000 --- a/recipes-kernel/kernel-modules/kernel-module-imx-gpu-viv/platform-Fix-kernel-version-check-for-3.14-based-ker.patch +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | From 617bdbec386a1237e2a148989318cc4a1360788a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Otavio Salvador <otavio@ossystems.com.br> | ||
| 3 | Date: Tue, 18 Aug 2015 23:08:48 +0000 | ||
| 4 | Subject: [PATCH] platform: Fix kernel version check for 3.14-based kernels | ||
| 5 | Organization: O.S. Systems Software LTDA. | ||
| 6 | |||
| 7 | The build fail about the bus frequency header (linux/busfreq-imx6.h) | ||
| 8 | not being found is caused by the mistaken check for the wrong kernel | ||
| 9 | version. | ||
| 10 | |||
| 11 | This patch fixes it by adding the right kernel version to be checked. | ||
| 12 | |||
| 13 | Upstream-Status: Pending | ||
| 14 | |||
| 15 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
| 16 | --- | ||
| 17 | .../os/linux/kernel/platform/freescale/gc_hal_kernel_platform_imx6q14.c | 2 +- | ||
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/kernel-module-imx-gpu-viv-src/hal/os/linux/kernel/platform/freescale/gc_hal_kernel_platform_imx6q14.c b/kernel-module-imx-gpu-viv-src/hal/os/linux/kernel/platform/freescale/gc_hal_kernel_platform_imx6q14.c | ||
| 21 | index a2e72ff..241614a 100644 | ||
| 22 | --- a/kernel-module-imx-gpu-viv-src/hal/os/linux/kernel/platform/freescale/gc_hal_kernel_platform_imx6q14.c | ||
| 23 | +++ b/kernel-module-imx-gpu-viv-src/hal/os/linux/kernel/platform/freescale/gc_hal_kernel_platform_imx6q14.c | ||
| 24 | @@ -40,7 +40,7 @@ | ||
| 25 | #include <linux/pm_runtime.h> | ||
| 26 | #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0) | ||
| 27 | #include <mach/busfreq.h> | ||
| 28 | -#elif LINUX_VERSION_CODE < KERNEL_VERSION(3, 14, 0) | ||
| 29 | +#elif LINUX_VERSION_CODE < KERNEL_VERSION(3, 15, 0) | ||
| 30 | #include <linux/busfreq-imx6.h> | ||
| 31 | #include <linux/reset.h> | ||
| 32 | #else | ||
| 33 | -- | ||
| 34 | 2.1.4 | ||
| 35 | |||
