summaryrefslogtreecommitdiffstats
path: root/acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-11-16 17:22:21 +0100
committertnut <thierryn1 at hispeed dot ch>2010-11-16 17:22:21 +0100
commit176e06025ea5847d2359d6ba914c8a0a41d69b59 (patch)
tree9efdc0b4ab85c5c8ff27ff49817bb99dc2257b2c /acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch
parent3d534de88c6a6d1dcdd93ca1e20ef44bd9473072 (diff)
parentfb0109d1482fed62cac278a4b95877092add82af (diff)
downloadnutyx-pakxe-176e06025ea5847d2359d6ba914c8a0a41d69b59.tar.gz
nutyx-pakxe-176e06025ea5847d2359d6ba914c8a0a41d69b59.tar.bz2
nutyx-pakxe-176e06025ea5847d2359d6ba914c8a0a41d69b59.tar.xz
nutyx-pakxe-176e06025ea5847d2359d6ba914c8a0a41d69b59.zip
Merge branch 'master' of ssh://kiao.no-ip.info:443/~/attapu
Diffstat (limited to 'acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch')
-rw-r--r--acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch72
1 files changed, 72 insertions, 0 deletions
diff --git a/acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch b/acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch
new file mode 100644
index 000000000..eec5a5cf3
--- /dev/null
+++ b/acompiler/acerhk/acerhk-0.5.35-kernel-2.6.30.patch
@@ -0,0 +1,72 @@
+--- a/acerhk.c
++++ b/acerhk.c
+@@ -2668,7 +2668,9 @@ static int acerhk_proc_init(void)
+ printk(KERN_INFO"acerhk: could not create /proc/driver/acerhk\n");
+ }
+ else {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ proc_acer_dir->owner = THIS_MODULE;
++#endif
+ /* now create several files, first general info ... */
+ entry = create_proc_read_entry("info",
+ 0444, proc_acer_dir, acerhk_proc_info, NULL);
+@@ -2677,7 +2679,9 @@ static int acerhk_proc_init(void)
+ remove_proc_entry("driver/acerhk", NULL);
+ retval = 0;
+ } else {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ /* ... last pressed key ... */
+ entry = create_proc_read_entry("key",
+ 0444, proc_acer_dir, acerhk_proc_key, NULL);
+@@ -2687,7 +2691,9 @@ static int acerhk_proc_init(void)
+ remove_proc_entry("driver/acerhk", NULL);
+ retval = 0;
+ } else {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ /* ... and led control file */
+ entry = create_proc_entry("led", 0222, proc_acer_dir);
+ if (entry == NULL) {
+@@ -2699,7 +2705,9 @@ static int acerhk_proc_init(void)
+ }
+ else {
+ entry->write_proc = acerhk_proc_led;
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ /* ... and wireless led controll file */
+ entry = create_proc_entry("wirelessled", 0222, proc_acer_dir);
+ if (entry == NULL) {
+@@ -2712,7 +2720,9 @@ static int acerhk_proc_init(void)
+ }
+ else {
+ entry->write_proc = acerhk_proc_wirelessled;
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ /* ... and bluetooth led controll file */
+ entry = create_proc_entry("blueled", 0222, proc_acer_dir);
+ if (entry == NULL) {
+@@ -2725,7 +2735,9 @@ static int acerhk_proc_init(void)
+ retval = 0;
+ } else {
+ entry->write_proc = acerhk_proc_blueled;
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ retval = 1;
+ #ifdef ACERDEBUG
+ /* add extra file for debugging purposes */
+@@ -2742,7 +2754,9 @@ static int acerhk_proc_init(void)
+ }
+ else {
+ entry->write_proc = acerhk_proc_debug;
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
+ entry->owner = THIS_MODULE;
++#endif
+ retval = 1;
+ }
+ #endif