diff options
Diffstat (limited to 'litmus/fdso.c')
-rw-r--r-- | litmus/fdso.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/litmus/fdso.c b/litmus/fdso.c index 16e3a43a67d1..7a16f640715c 100644 --- a/litmus/fdso.c +++ b/litmus/fdso.c | |||
@@ -18,14 +18,11 @@ | |||
18 | 18 | ||
19 | #include <litmus/fdso.h> | 19 | #include <litmus/fdso.h> |
20 | 20 | ||
21 | extern struct fdso_ops fmlp_sem_ops; | ||
21 | extern struct fdso_ops srp_sem_ops; | 22 | extern struct fdso_ops srp_sem_ops; |
22 | 23 | ||
23 | static struct fdso_ops dummy_ops = { | ||
24 | .create = NULL | ||
25 | }; | ||
26 | |||
27 | static const struct fdso_ops* fdso_ops[] = { | 24 | static const struct fdso_ops* fdso_ops[] = { |
28 | &dummy_ops, | 25 | &fmlp_sem_ops, |
29 | &srp_sem_ops, | 26 | &srp_sem_ops, |
30 | }; | 27 | }; |
31 | 28 | ||