diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-05 16:34:21 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-05 16:34:21 +0000 |
commit | 97a0e2a21cdb30193b6c5101ff29a8cb7cc39ebb (patch) | |
tree | 55d900984c913d965eb9125a4fbae058a4ced954 /hardinfo2/devices.c | |
parent | 448244afe83f875993408d09319d1458c4ea4e32 (diff) |
Some fixes for Linux 2.4.
Diffstat (limited to 'hardinfo2/devices.c')
-rw-r--r-- | hardinfo2/devices.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hardinfo2/devices.c b/hardinfo2/devices.c index 9f377f46..e196897e 100644 --- a/hardinfo2/devices.c +++ b/hardinfo2/devices.c @@ -397,3 +397,12 @@ hi_module_get_about(void) return ma; } + +gchar ** +hi_module_get_dependencies(void) +{ + static gchar *deps[] = { "computer.so", NULL }; + + return deps; +} + |