From 235172f53ead3667e1ea9e9a665caab732584a48 Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Sun, 22 Feb 2015 13:00:51 +0200 Subject: Added x11-drivers/* --- .../files/ati-drivers-14.12-linux-3.19.patch | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 x11-drivers/ati-drivers/files/ati-drivers-14.12-linux-3.19.patch (limited to 'x11-drivers/ati-drivers/files') diff --git a/x11-drivers/ati-drivers/files/ati-drivers-14.12-linux-3.19.patch b/x11-drivers/ati-drivers/files/ati-drivers-14.12-linux-3.19.patch new file mode 100644 index 00000000..9594972d --- /dev/null +++ b/x11-drivers/ati-drivers/files/ati-drivers-14.12-linux-3.19.patch @@ -0,0 +1,28 @@ +--- a/common/lib/modules/fglrx/build_mod/firegl_public.c ++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c +@@ -4823,8 +4823,13 @@ + { + unsigned long orig_level; + ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0) ++ orig_level = __this_cpu_read(kasExecutionLevel); ++ __this_cpu_write(kasExecutionLevel,level); ++#else + orig_level = __get_cpu_var(kasExecutionLevel); + __get_cpu_var(kasExecutionLevel) = level; ++#endif + + return orig_level; + } +@@ -4836,7 +4841,11 @@ + */ + static unsigned long kas_GetExecutionLevel(void) + { ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0) ++ return __this_cpu_read(kasExecutionLevel); ++#else + return __get_cpu_var(kasExecutionLevel); ++#endif + } + + /** \brief Type definition for kas_spin_lock() parameter */ -- cgit v1.2.3