diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-10-04 19:09:51 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-10-04 19:09:51 +0100 |
commit | 836dcf91c181df6afb0f658bf31d34744f8ff052 (patch) | |
tree | 17d553cc348a5cdf287a55c96021971340cd5b1d /x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch | |
parent | 1df4d224a758ee39311dbff64893a509ef78ede2 (diff) |
drop splitted x11 drivers, we go gentoo way
Diffstat (limited to 'x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch')
-rw-r--r-- | x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch b/x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch deleted file mode 100644 index ffd2e459..00000000 --- a/x11-drivers/ati-drivers/files/ati-drivers-2.6.39.patch +++ /dev/null @@ -1,55 +0,0 @@ ---- firegl_public.c.orig 2011-05-10 22:19:26.395914392 +0200 -+++ firegl_public.c 2011-05-11 01:40:36.967379590 +0200 -@@ -114,7 +114,9 @@ - #include <linux/pci.h> - #include <linux/wait.h> - #include <linux/miscdevice.h> -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) - #include <linux/smp_lock.h> -+#endif - // newer SuSE kernels need this - #include <linux/highmem.h> - -@@ -1049,7 +1051,11 @@ static int __init firegl_init_module(voi - dev->pubdev.signature = FGL_DEVICE_SIGNATURE; - - for (i = 0; i < __KE_MAX_SPINLOCKS; i++) -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) - dev->spinlock[i] = SPIN_LOCK_UNLOCKED; -+#else -+ dev->spinlock[i] = __SPIN_LOCK_UNLOCKED(old_style_spin_init); -+#endif - - for (i=0; i < __KE_MAX_SEMAPHORES; i++) - sema_init(&dev->struct_sem[i], 1); -@@ -1900,13 +1906,17 @@ void ATI_API_CALL KCL_spin_unlock(void * - /** \brief Grab global kernel lock */ - void ATI_API_CALL KCL_GlobalKernelLock(void) - { -+#ifdef CONFIG_KERNEL_LOCK - lock_kernel(); -+#endif - } - - /** \brief Release global kernel lock */ - void ATI_API_CALL KCL_GlobalKernelUnlock(void) - { -+#ifdef CONFIG_KERNEL_LOCK - unlock_kernel(); -+#endif - } - - /*****************************************************************************/ ---- drmP.h.orig 2011-05-10 22:17:00.000000000 +0200 -+++ drmP.h 2011-05-11 01:32:09.399610802 +0200 -@@ -57,7 +57,9 @@ - #include <linux/pci.h> - #include <linux/version.h> - #include <linux/sched.h> -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39) - #include <linux/smp_lock.h> /* For (un)lock_kernel */ -+#endif - #include <linux/mm.h> - #include <linux/pagemap.h> - #if defined(__alpha__) || defined(__powerpc__) - #if defined(__alpha__) || defined(__powerpc__) |