Commit e0c6b8a1 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm:
  apm-emulation: apm_mutex breaks ACK; remove it
  APM: take over maintainership
parents 710421cc fda5fe19
...@@ -548,10 +548,11 @@ S: Maintained ...@@ -548,10 +548,11 @@ S: Maintained
F: sound/aoa/ F: sound/aoa/
APM DRIVER APM DRIVER
L: linux-laptop@vger.kernel.org M: Jiri Kosina <jkosina@suse.cz>
S: Orphan S: Odd fixes
F: arch/x86/kernel/apm_32.c F: arch/x86/kernel/apm_32.c
F: include/linux/apm_bios.h F: include/linux/apm_bios.h
F: drivers/char/apm-emulation.c
APPLE BCM5974 MULTITOUCH DRIVER APPLE BCM5974 MULTITOUCH DRIVER
M: Henrik Rydberg <rydberg@euromail.se> M: Henrik Rydberg <rydberg@euromail.se>
......
...@@ -126,7 +126,6 @@ struct apm_user { ...@@ -126,7 +126,6 @@ struct apm_user {
/* /*
* Local variables * Local variables
*/ */
static DEFINE_MUTEX(apm_mutex);
static atomic_t suspend_acks_pending = ATOMIC_INIT(0); static atomic_t suspend_acks_pending = ATOMIC_INIT(0);
static atomic_t userspace_notification_inhibit = ATOMIC_INIT(0); static atomic_t userspace_notification_inhibit = ATOMIC_INIT(0);
static int apm_disabled; static int apm_disabled;
...@@ -275,7 +274,6 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg) ...@@ -275,7 +274,6 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg)
if (!as->suser || !as->writer) if (!as->suser || !as->writer)
return -EPERM; return -EPERM;
mutex_lock(&apm_mutex);
switch (cmd) { switch (cmd) {
case APM_IOC_SUSPEND: case APM_IOC_SUSPEND:
mutex_lock(&state_lock); mutex_lock(&state_lock);
...@@ -336,7 +334,6 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg) ...@@ -336,7 +334,6 @@ apm_ioctl(struct file *filp, u_int cmd, u_long arg)
mutex_unlock(&state_lock); mutex_unlock(&state_lock);
break; break;
} }
mutex_unlock(&apm_mutex);
return err; return err;
} }
...@@ -371,7 +368,6 @@ static int apm_open(struct inode * inode, struct file * filp) ...@@ -371,7 +368,6 @@ static int apm_open(struct inode * inode, struct file * filp)
{ {
struct apm_user *as; struct apm_user *as;
mutex_lock(&apm_mutex);
as = kzalloc(sizeof(*as), GFP_KERNEL); as = kzalloc(sizeof(*as), GFP_KERNEL);
if (as) { if (as) {
/* /*
...@@ -391,7 +387,6 @@ static int apm_open(struct inode * inode, struct file * filp) ...@@ -391,7 +387,6 @@ static int apm_open(struct inode * inode, struct file * filp)
filp->private_data = as; filp->private_data = as;
} }
mutex_unlock(&apm_mutex);
return as ? 0 : -ENOMEM; return as ? 0 : -ENOMEM;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment