git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77b6706
)
ACPI / EC: Cleanup the member name for spinlock/mutex in struct
author
Feng Tang
<feng.tang@intel.com>
Mon, 22 Oct 2012 23:29:27 +0000
(
01:29
+0200)
committer
Rafael J. Wysocki
<rafael.j.wysocki@intel.com>
Wed, 14 Nov 2012 23:15:59 +0000
(
00:15
+0100)
Current member names for mutex/spinlock are a little confusing.
Change the
{
struct mutex lock;
spinlock_t curr_lock;
}
to
{
struct mutex mutex;
spinlock_t lock;
}
So that the code is cleaner and easier to read.
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
No differences found