summarylogtreecommitdiffstats
path: root/kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch')
-rw-r--r--kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch b/kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch
deleted file mode 100644
index fe7cd3bd9488..000000000000
--- a/kolasa_4.1_remove-IRQF_DISABLED-15.7-v2.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-07-04 16:31:23.000000000 +0200
-+++ 15.7b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-07-11 11:30:12.617426303 +0200
-@@ -3498,7 +3498,11 @@
- #else
- //when MSI enabled. keep irq disabled when calling the action handler,
- //exclude this IRQ from irq balancing (only on one CPU)
-- ((useMSI) ? (IRQF_DISABLED) : (IRQF_SHARED)),
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)
-+ ((useMSI) ? (0x0) : (IRQF_SHARED)),
-+#else
-+ ((useMSI) ? (IRQF_DISABLED) : (IRQF_SHARED)),
-+#endif
- #endif
- dev_name,
- context);