Skip to content

Commit

Permalink
[PATCH] mutex: trivial whitespace cleanups
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Ingo Molnar authored and Linus Torvalds committed Jan 10, 2006
1 parent 58dc125 commit 0270664
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion kernel/mutex-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,4 +459,3 @@ void fastcall mutex_destroy(struct mutex *lock)
}

EXPORT_SYMBOL_GPL(mutex_destroy);

5 changes: 1 addition & 4 deletions kernel/mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ __mutex_lock_slowpath(atomic_t *lock_count __IP_DECL__)
static fastcall noinline void
__mutex_unlock_slowpath(atomic_t *lock_count __IP_DECL__)
{
struct mutex *lock = container_of(lock_count, struct mutex, count);
struct mutex *lock = container_of(lock_count, struct mutex, count);

DEBUG_WARN_ON(lock->owner != current_thread_info());

Expand Down Expand Up @@ -313,6 +313,3 @@ int fastcall mutex_trylock(struct mutex *lock)
}

EXPORT_SYMBOL(mutex_trylock);



0 comments on commit 0270664

Please sign in to comment.