Staging: sep: kill lock wrapper
We don't need wrappers for this so clean them up
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/drivers/staging/sep/sep_main_mod.c b/drivers/staging/sep/sep_main_mod.c
index 197768d..372bd3a 100644
--- a/drivers/staging/sep/sep_main_mod.c
+++ b/drivers/staging/sep/sep_main_mod.c
@@ -288,24 +288,6 @@
-----------------------------------------------*/
/*
- this function locks SEP by locking the semaphore
-*/
-int sep_lock()
-{
- mutex_lock(&sep_mutex);
- return 0;
-}
-
-/*
- this function unlocks SEP
-*/
-void sep_unlock()
-{
- /* release mutex */
- mutex_unlock(&sep_mutex);
-}
-
-/*
this function returns the address of the message shared area
*/
void sep_map_shared_area(unsigned long *mappedAddr_ptr)