diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 19:06:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 19:06:04 -0400 |
commit | cf2f7d7c90279cdbc12429de278f3d27ac2050ae (patch) | |
tree | c84bb54712f566e6497ccadd1ae9f42b4baf0c63 /drivers/platform/x86/asus_acpi.c | |
parent | 53d8f67082c9b86699dd88b7f9e667e245193f21 (diff) | |
parent | a9caa3de249a6c43bc9c6aec87881f09276677e3 (diff) |
Merge branch 'proc-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/adobriyan/proc
* 'proc-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/adobriyan/proc:
Revert "proc: revert /proc/uptime to ->read_proc hook"
proc 2/2: remove struct proc_dir_entry::owner
proc 1/2: do PDE usecounting even for ->read_proc, ->write_proc
proc: fix sparse warnings in pagemap_read()
proc: move fs/proc/inode-alloc.txt comment into a source file
Diffstat (limited to 'drivers/platform/x86/asus_acpi.c')
-rw-r--r-- | drivers/platform/x86/asus_acpi.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/platform/x86/asus_acpi.c b/drivers/platform/x86/asus_acpi.c index d63f26e666a4..ba1f7497e4b9 100644 --- a/drivers/platform/x86/asus_acpi.c +++ b/drivers/platform/x86/asus_acpi.c | |||
@@ -987,7 +987,6 @@ asus_proc_add(char *name, proc_writefunc *writefunc, | |||
987 | proc->write_proc = writefunc; | 987 | proc->write_proc = writefunc; |
988 | proc->read_proc = readfunc; | 988 | proc->read_proc = readfunc; |
989 | proc->data = acpi_driver_data(device); | 989 | proc->data = acpi_driver_data(device); |
990 | proc->owner = THIS_MODULE; | ||
991 | proc->uid = asus_uid; | 990 | proc->uid = asus_uid; |
992 | proc->gid = asus_gid; | 991 | proc->gid = asus_gid; |
993 | return 0; | 992 | return 0; |
@@ -1020,7 +1019,6 @@ static int asus_hotk_add_fs(struct acpi_device *device) | |||
1020 | if (proc) { | 1019 | if (proc) { |
1021 | proc->read_proc = proc_read_info; | 1020 | proc->read_proc = proc_read_info; |
1022 | proc->data = acpi_driver_data(device); | 1021 | proc->data = acpi_driver_data(device); |
1023 | proc->owner = THIS_MODULE; | ||
1024 | proc->uid = asus_uid; | 1022 | proc->uid = asus_uid; |
1025 | proc->gid = asus_gid; | 1023 | proc->gid = asus_gid; |
1026 | } else { | 1024 | } else { |
@@ -1436,7 +1434,6 @@ static int __init asus_acpi_init(void) | |||
1436 | printk(KERN_ERR "Asus ACPI: Unable to create /proc entry\n"); | 1434 | printk(KERN_ERR "Asus ACPI: Unable to create /proc entry\n"); |
1437 | return -ENODEV; | 1435 | return -ENODEV; |
1438 | } | 1436 | } |
1439 | asus_proc_dir->owner = THIS_MODULE; | ||
1440 | 1437 | ||
1441 | result = acpi_bus_register_driver(&asus_hotk_driver); | 1438 | result = acpi_bus_register_driver(&asus_hotk_driver); |
1442 | if (result < 0) { | 1439 | if (result < 0) { |