diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-02 23:15:08 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-01-02 23:15:08 +0000 |
commit | acc6e48b81d48b084393809110c8949c6782021f (patch) | |
tree | 24425ebe5bfbab63eb90e4dbedce6742cfbcc78f /hardinfo2/arch/linux/common/modules.h | |
parent | 43d4be36dd06b69f8ac126c7dcc8c259b0544f7b (diff) |
Implemented new module API. Needs cleanups.
Diffstat (limited to 'hardinfo2/arch/linux/common/modules.h')
-rw-r--r-- | hardinfo2/arch/linux/common/modules.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hardinfo2/arch/linux/common/modules.h b/hardinfo2/arch/linux/common/modules.h index 3acf4aba..9b895ee8 100644 --- a/hardinfo2/arch/linux/common/modules.h +++ b/hardinfo2/arch/linux/common/modules.h @@ -34,14 +34,12 @@ remove_module_devices(gpointer key, gpointer value, gpointer data) return FALSE; } -void -scan_modules(void) +static void +scan_modules_do(void) { FILE *lsmod; gchar buffer[1024]; - shell_status_update("Getting loaded modules information..."); - if (module_list) { g_free(module_list); module_list = NULL; |