summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNP-Hardass <NP-Hardass@gentoo.org>2017-07-24 16:39:22 -0400
committerNP-Hardass <NP-Hardass@gentoo.org>2017-07-24 16:42:24 -0400
commit1b0fc3aa8f51619ce45cf39ed1c27910bba3c1ac (patch)
tree41950ffb87b1f34b44fbfd5a6a634139dbbb2706 /sys-power/bbswitch/files
parentapp-emulation/wine-vanilla: Bump to 2.13 (diff)
downloadgentoo-1b0fc3aa8f51619ce45cf39ed1c27910bba3c1ac.tar.gz
gentoo-1b0fc3aa8f51619ce45cf39ed1c27910bba3c1ac.tar.bz2
gentoo-1b0fc3aa8f51619ce45cf39ed1c27910bba3c1ac.zip
sys-power/bbswitch: Bump to 0.8-r1 and fix compiling w/ kernel 4.12, #623736
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'sys-power/bbswitch/files')
-rw-r--r--sys-power/bbswitch/files/bbswitch-0.8-kernel-4.12.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/sys-power/bbswitch/files/bbswitch-0.8-kernel-4.12.patch b/sys-power/bbswitch/files/bbswitch-0.8-kernel-4.12.patch
new file mode 100644
index 000000000000..1db623d583e9
--- /dev/null
+++ b/sys-power/bbswitch/files/bbswitch-0.8-kernel-4.12.patch
@@ -0,0 +1,18 @@
+diff -uNr bbswitch-0.8/bbswitch.c bbswitch-0.8-new/bbswitch.c
+--- bbswitch-0.8/bbswitch.c 2013-12-04 18:22:06.000000000 -0500
++++ bbswitch-0.8-new/bbswitch.c 2017-07-08 01:11:54.588545766 -0400
+@@ -31,7 +31,14 @@
+ #include <linux/pci.h>
+ #include <linux/acpi.h>
+ #include <linux/module.h>
++#include <linux/version.h>
++
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0)
++#include <linux/uaccess.h>
++#else
+ #include <asm/uaccess.h>
++#endif
++
+ #include <linux/suspend.h>
+ #include <linux/seq_file.h>
+ #include <linux/pm_runtime.h>