]> git.pld-linux.org Git - packages/xorg-driver-video-nvidia-legacy-304xx.git/blame - linux-3.11.patch
- rebuild for kernel-3.10.11-1
[packages/xorg-driver-video-nvidia-legacy-304xx.git] / linux-3.11.patch
CommitLineData
33afafb0
JR
1Description: fix module build for kernel 3.11
2Author: Milos_SD
3Origin: other, https://devtalk.nvidia.com/default/topic/549532/linux/linux-3-10-solved-3-11-solved-incompatibility-in-function-lsquo-nv_i2c_del_adapter-rsquo-error/2/
4
5--- a/kernel/nv-linux.h
6+++ b/kernel/nv-linux.h
7@@ -957,7 +957,11 @@ static inline int nv_execute_on_all_cpus
8 #endif
9
10 #if !defined(NV_VMWARE)
11+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0)
12+#define NV_NUM_PHYSPAGES get_num_physpages()
13+#else
14 #define NV_NUM_PHYSPAGES num_physpages
15+#endif
16 #define NV_GET_CURRENT_PROCESS() current->tgid
17 #define NV_IN_ATOMIC() in_atomic()
18 #define NV_LOCAL_BH_DISABLE() local_bh_disable()
This page took 0.06535 seconds and 4 git commands to generate.