aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fmlp.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/fmlp.c')
-rw-r--r--litmus/fmlp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/litmus/fmlp.c b/litmus/fmlp.c
index a9a638576d69..1e4d544a9230 100644
--- a/litmus/fmlp.c
+++ b/litmus/fmlp.c
@@ -20,7 +20,7 @@
20 20
21#ifdef CONFIG_FMLP 21#ifdef CONFIG_FMLP
22 22
23static void* create_fmlp_semaphore(void) 23static void* create_fmlp_semaphore(obj_type_t type)
24{ 24{
25 struct pi_semaphore* sem; 25 struct pi_semaphore* sem;
26 int i; 26 int i;
@@ -45,7 +45,7 @@ static int open_fmlp_semaphore(struct od_table_entry* entry, void* __user arg)
45 return 0; 45 return 0;
46} 46}
47 47
48static void destroy_fmlp_semaphore(void* sem) 48static void destroy_fmlp_semaphore(obj_type_t type, void* sem)
49{ 49{
50 /* XXX assert invariants */ 50 /* XXX assert invariants */
51 kfree(sem); 51 kfree(sem);