summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-01-17 02:17:32 +0100
committerLennart Poettering <lennart@poettering.net>2009-01-17 02:17:32 +0100
commit606cf8a2ec9d5f84b88039b14e17a93b706be9da (patch)
tree565851672281d63df92a994d0b3b71666ced977d /src
parent76ca5b8578aae04753c6ca2c5a87bbb39188f7b5 (diff)
get rid of pa_module_get_info because it is not used
Diffstat (limited to 'src')
-rw-r--r--src/pulsecore/module.c6
-rw-r--r--src/pulsecore/module.h2
2 files changed, 0 insertions, 8 deletions
diff --git a/src/pulsecore/module.c b/src/pulsecore/module.c
index c4dcb478..0a8c8f57 100644
--- a/src/pulsecore/module.c
+++ b/src/pulsecore/module.c
@@ -234,12 +234,6 @@ void pa_module_unload_request_by_index(pa_core *c, uint32_t idx, pa_bool_t force
pa_module_unload_request(m, force);
}
-pa_modinfo *pa_module_get_info(pa_module *m) {
- pa_assert(m);
-
- return pa_modinfo_get_by_handle(m->dl, m->name);
-}
-
int pa_module_get_n_used(pa_module*m) {
pa_assert(m);
diff --git a/src/pulsecore/module.h b/src/pulsecore/module.h
index 986f0d22..5c49bd2d 100644
--- a/src/pulsecore/module.h
+++ b/src/pulsecore/module.h
@@ -79,6 +79,4 @@ int pa_module_get_n_used(pa_module*m);
pa_bool_t pa__load_once(void) { return b; } \
struct __stupid_useless_struct_to_allow_trailing_semicolon
-pa_modinfo *pa_module_get_info(pa_module *m);
-
#endif