+26
−26
+2
−2
Loading
Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more
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>