[PATCH] mutex: trivial whitespace cleanups

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Ingo Molnar and committed by
Linus Torvalds
02706647 58dc125a

+1 -5
-1
kernel/mutex-debug.c
··· 459 459 } 460 460 461 461 EXPORT_SYMBOL_GPL(mutex_destroy); 462 -
+1 -4
kernel/mutex.c
··· 202 202 static fastcall noinline void 203 203 __mutex_unlock_slowpath(atomic_t *lock_count __IP_DECL__) 204 204 { 205 - struct mutex *lock = container_of(lock_count, struct mutex, count); 205 + struct mutex *lock = container_of(lock_count, struct mutex, count); 206 206 207 207 DEBUG_WARN_ON(lock->owner != current_thread_info()); 208 208 ··· 313 313 } 314 314 315 315 EXPORT_SYMBOL(mutex_trylock); 316 - 317 - 318 -