diff options
author | Devan Franchini <twitch153@gentoo.org> | 2014-04-19 03:23:58 +0000 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2014-04-19 03:23:58 +0000 |
commit | f311c705f34efff30ee6323185e6696e1a1739ce (patch) | |
tree | 47a1d6f28022ceeab2474d1b1179ad59a9acc9d5 /app-laptop/easy-slow-down-manager | |
parent | Remove ruby18 target. (diff) | |
download | gentoo-2-f311c705f34efff30ee6323185e6696e1a1739ce.tar.gz gentoo-2-f311c705f34efff30ee6323185e6696e1a1739ce.tar.bz2 gentoo-2-f311c705f34efff30ee6323185e6696e1a1739ce.zip |
Adds patch to compile on systems with kernel-3.10.1 and up
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
Diffstat (limited to 'app-laptop/easy-slow-down-manager')
3 files changed, 218 insertions, 4 deletions
diff --git a/app-laptop/easy-slow-down-manager/ChangeLog b/app-laptop/easy-slow-down-manager/ChangeLog index a8dd1fc256f8..b6bfaa410371 100644 --- a/app-laptop/easy-slow-down-manager/ChangeLog +++ b/app-laptop/easy-slow-down-manager/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-laptop/easy-slow-down-manager -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/easy-slow-down-manager/ChangeLog,v 1.4 2013/09/25 18:01:24 angelos Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/easy-slow-down-manager/ChangeLog,v 1.5 2014/04/19 03:23:58 twitch153 Exp $ + + 19 Apr 2014; Devan Franchini <twitch153@gentoo.org> + +files/easy-slow-down-manager-0.3-kernel-3.10-1.patch, + easy-slow-down-manager-0.3.ebuild: + Adds patch to compile on systems with kernel-3.10.1 and up 25 Sep 2013; <christoph@gentoo.org> metadata.xml: Remove myself from metadata since I do not own a Samsung laptop anymore diff --git a/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild b/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild index 19768307a898..1597d87874ed 100644 --- a/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild +++ b/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild,v 1.3 2013/07/02 21:59:39 vincent Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/easy-slow-down-manager/easy-slow-down-manager-0.3.ebuild,v 1.4 2014/04/19 03:23:58 twitch153 Exp $ EAPI=4 inherit eutils linux-mod @@ -20,6 +20,10 @@ BUILD_TARGETS="all" MODULE_NAMES="samsung-backlight() easy_slow_down_manager()" src_prepare() { + get_version + if kernel_is -ge 3 10; then + epatch "${FILESDIR}"/${P}-kernel-3.10-1.patch + fi epatch "${FILESDIR}"/${P}-kv_dir.patch } diff --git a/app-laptop/easy-slow-down-manager/files/easy-slow-down-manager-0.3-kernel-3.10-1.patch b/app-laptop/easy-slow-down-manager/files/easy-slow-down-manager-0.3-kernel-3.10-1.patch new file mode 100644 index 000000000000..272143eeea3b --- /dev/null +++ b/app-laptop/easy-slow-down-manager/files/easy-slow-down-manager-0.3-kernel-3.10-1.patch @@ -0,0 +1,205 @@ +diff --git a/easy_slow_down_manager.c b/easy_slow_down_manager.c +index 7b2d1e9..1336557 100644 +--- a/easy_slow_down_manager.c ++++ b/easy_slow_down_manager.c +@@ -4,6 +4,7 @@ + #include <linux/proc_fs.h> + #include <linux/pci.h> + #include <linux/delay.h> ++#include <linux/version.h> + #include <asm/uaccess.h> + #include <linux/dmi.h> + +@@ -101,7 +102,7 @@ MODULE_PARM_DESC(debug, "Verbose output"); + int sabi_exec_command(u8 command, u8 data, struct sabi_retval *sretval) + { + int retval = 0; +- ++ + mutex_lock(&sabi_mutex); + + /* enable memory to be able to write to it */ +@@ -141,22 +142,25 @@ int sabi_exec_command(u8 command, u8 data, struct sabi_retval *sretval) + return retval; + } + +-int easy_slow_down_read(char *page, char **start, off_t off, +- int count, int *eof, void *data) { ++ssize_t easy_slow_down_read(struct file *filp, char __user *buffer, ++ size_t length, loff_t *off) { + struct sabi_retval sretval; +- +- if (off > 0) { +- *eof = 1; +- } +- else if (!sabi_exec_command(SABI_GET_ETIQUETTE_MODE, 0, &sretval)) { +- page[0] = sretval.retval[0] + '0'; ++ ++ if (*off > 0) ++ return 0; ++ ++ if (!sabi_exec_command(SABI_GET_ETIQUETTE_MODE, 0, &sretval)) { ++ char mode = sretval.retval[0] + '0'; ++ if (copy_to_user(buffer, &mode, 1)) ++ return -EFAULT; ++ (*off)++; + return 1; + } + return 0; + } + +-int easy_slow_down_write(struct file *file, const char __user *buffer, +- unsigned long count, void *data) { ++ssize_t easy_slow_down_write(struct file *filp, const char __user *buffer, ++ size_t count, loff_t *off) { + char mode = '0'; + if (copy_from_user(&mode, buffer, 1)) { + return -EFAULT; +@@ -167,22 +171,25 @@ int easy_slow_down_write(struct file *file, const char __user *buffer, + return count; + } + +-int easy_backlight_read(char *page, char **start, off_t off, +- int count, int *eof, void *data) { ++ssize_t easy_backlight_read(struct file *filp, char __user *buffer, ++ size_t length, loff_t *off) { + struct sabi_retval sretval; +- +- if (off > 0) { +- *eof = 1; +- } +- else if (!sabi_exec_command(SABI_GET_BACKLIGHT, 0, &sretval)) { +- page[0] = sretval.retval[0] + '0'; ++ ++ if (*off > 0) ++ return 0; ++ ++ if (!sabi_exec_command(SABI_GET_BACKLIGHT, 0, &sretval)) { ++ char mode = sretval.retval[0] + '0'; ++ if (copy_to_user(buffer, &mode, 1)) ++ return -EFAULT; ++ (*off)++; + return 1; + } + return 0; + } + +-int easy_backlight_write(struct file *file, const char __user *buffer, +- unsigned long count, void *data) { ++ssize_t easy_backlight_write(struct file *file, const char __user *buffer, ++ size_t count, loff_t *off) { + char mode = '0'; + if (copy_from_user(&mode, buffer, 1)) { + return -EFAULT; +@@ -193,22 +200,25 @@ int easy_backlight_write(struct file *file, const char __user *buffer, + return count; + } + +-int easy_wifi_kill_read(char *page, char **start, off_t off, +- int count, int *eof, void *data) { ++ssize_t easy_wifi_kill_read(struct file *filp, char __user *buffer, ++ size_t length, loff_t *off) { + struct sabi_retval sretval; +- +- if (off > 0) { +- *eof = 1; +- } +- else if (!sabi_exec_command(SABI_GET_WIRELESS_BUTTON, 0, &sretval)) { +- page[0] = sretval.retval[0] + '0'; ++ ++ if (*off > 0) ++ return 0; ++ ++ if (!sabi_exec_command(SABI_GET_WIRELESS_BUTTON, 0, &sretval)) { ++ char mode = sretval.retval[0] + '0'; ++ if (copy_to_user(buffer, &mode, 1)) ++ return -EFAULT; ++ (*off)++; + return 1; + } + return 0; + } + +-int easy_wifi_kill_write(struct file *file, const char __user *buffer, +- unsigned long count, void *data) { ++ssize_t easy_wifi_kill_write(struct file *file, const char __user *buffer, ++ size_t count, loff_t *off) { + char mode = '0'; + if (copy_from_user(&mode, buffer, 1)) { + return -EFAULT; +@@ -219,8 +229,26 @@ int easy_wifi_kill_write(struct file *file, const char __user *buffer, + return count; + } + ++static const struct file_operations proc_fops_slow_down = { ++ .owner = THIS_MODULE, ++ .read = easy_slow_down_read, ++ .write = easy_slow_down_write ++}; ++ ++static const struct file_operations proc_fops_wifi_kill = { ++ .owner = THIS_MODULE, ++ .read = easy_wifi_kill_read, ++ .write = easy_wifi_kill_write ++}; ++ ++static const struct file_operations proc_fops_backlight = { ++ .owner = THIS_MODULE, ++ .read = easy_backlight_read, ++ .write = easy_backlight_write ++}; ++ + int __init easy_slow_down_init(void) { +- ++ + const char *test_str = "SwSmi@"; + int pos; + int index = 0; +@@ -290,19 +318,15 @@ int __init easy_slow_down_init(void) { + } + + +- proc_entry_slow_down = create_proc_entry("easy_slow_down_manager", 0666, NULL); ++ proc_entry_slow_down = proc_create("easy_slow_down_manager", 0666, NULL, &proc_fops_slow_down); + if (proc_entry_slow_down == NULL) { + printk(KERN_INFO "Easy slow down manager: Couldn't create proc entry\n"); + iounmap(sabi_iface); + iounmap(f0000_segment); + return -ENOMEM; + } +- else { +- proc_entry_slow_down->read_proc = easy_slow_down_read; +- proc_entry_slow_down->write_proc = easy_slow_down_write; +- } + +- proc_entry_wifi_kill = create_proc_entry("easy_wifi_kill", 0666, NULL); ++ proc_entry_wifi_kill = proc_create("easy_wifi_kill", 0666, NULL, &proc_fops_wifi_kill); + if (proc_entry_wifi_kill == NULL) { + printk(KERN_INFO "Easy slow down manager: Couldn't create proc entry\n"); + remove_proc_entry("easy_slow_down_manager", NULL); +@@ -310,12 +334,8 @@ int __init easy_slow_down_init(void) { + iounmap(f0000_segment); + return -ENOMEM; + } +- else { +- proc_entry_wifi_kill->read_proc = easy_wifi_kill_read; +- proc_entry_wifi_kill->write_proc = easy_wifi_kill_write; +- } +- +- proc_entry_backlight = create_proc_entry("easy_backlight", 0666, NULL); ++ ++ proc_entry_backlight = proc_create("easy_backlight", 0666, NULL, &proc_fops_backlight); + if (proc_entry_backlight == NULL) { + printk(KERN_INFO "Easy slow down manager: Couldn't create proc entry\n"); + remove_proc_entry("easy_slow_down_manager", NULL); +@@ -324,10 +344,6 @@ int __init easy_slow_down_init(void) { + iounmap(f0000_segment); + return -ENOMEM; + } +- else { +- proc_entry_backlight->read_proc = easy_backlight_read; +- proc_entry_backlight->write_proc = easy_backlight_write; +- } + return 0; + } + |