From 6f46e9fece002a679a0946f93de9a9f1caaee38c Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Mon, 1 Nov 2010 10:23:52 -0500 Subject: [PATCH] OMAP3 SGX TI 4.00.00.01 2.6.37-rc1 use semaphore over mutex Signed-off-by: Robert Nelson Changes by Koen: Protect it with #if LINUX_VERSION_CODE => KERNEL_VERSION(2,6,36) --- services4/srvkm/common/resman.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services4/srvkm/common/resman.c b/services4/srvkm/common/resman.c index d713c3c..cf3c207 100644 --- a/services4/srvkm/common/resman.c +++ b/services4/srvkm/common/resman.c @@ -46,7 +46,11 @@ #include #endif +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) +static DEFINE_SEMAPHORE(lock); +#else static DECLARE_MUTEX(lock); +#endif #define ACQUIRE_SYNC_OBJ do { \ if (in_interrupt()) { \ -- 2.39.5