You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
377 B
12 lines
377 B
/*
|
|
* Pull in the generic implementation for the mutex fastpath.
|
|
*
|
|
* TODO: implement optimized primitives instead, or leave the generic
|
|
* implementation in place, or pick the atomic_xchg() based generic
|
|
* implementation. (see asm-generic/mutex-xchg.h for details)
|
|
*/
|
|
#if defined(CONFIG_CPU_SH4A)
|
|
#include <asm/mutex-llsc.h>
|
|
#else
|
|
#include <asm-generic/mutex-dec.h>
|
|
#endif
|
|
|