summarylogtreecommitdiffstats
path: root/4.3-kolasa-seq_printf.patch
diff options
context:
space:
mode:
authorVi0L02015-11-25 21:12:59 +0100
committerVi0L02015-11-25 21:12:59 +0100
commit6273ae5dff3692ae7cc297c3fbb14221c9e7b763 (patch)
treeaf860e13b00ef9cc4f739fe79be6aceba7b0d94b /4.3-kolasa-seq_printf.patch
parent1942a7429bbe768ecea8dea5e0fb587d8240689b (diff)
downloadaur-6273ae5dff3692ae7cc297c3fbb14221c9e7b763.tar.gz
added support for linux 4.2 and 4.3 (needs gcc49)
Diffstat (limited to '4.3-kolasa-seq_printf.patch')
-rw-r--r--4.3-kolasa-seq_printf.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/4.3-kolasa-seq_printf.patch b/4.3-kolasa-seq_printf.patch
new file mode 100644
index 000000000000..6cd08a93acad
--- /dev/null
+++ b/4.3-kolasa-seq_printf.patch
@@ -0,0 +1,16 @@
+--- 15.9/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-09 00:57:14.000000000 +0200
++++ 15.9b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-11-02 21:02:06.124639919 +0100
+@@ -623,8 +623,13 @@
+
+ len = snprintf(buf, request, "%d\n", major);
+ #else
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ seq_printf(m, "%d\n", major);
++ len = 0;
++#else
+ len = seq_printf(m, "%d\n", major);
+ #endif
++#endif
+
+ KCL_DEBUG1(FN_FIREGL_PROC, "return len=%i\n",len);
+