revert 2fdd374f4214129d93f10b7001adece9239752a2
authorJohn Crispin <blogic@openwrt.org>
Sat, 16 Nov 2013 19:55:14 +0000 (20:55 +0100)
committerJohn Crispin <blogic@openwrt.org>
Sat, 16 Nov 2013 19:55:14 +0000 (20:55 +0100)
Signed-off-by: John Crispin <blogic@openwrt.org>
kmodloader.c

index 3238190b9eb1dbf2a82b4f72311edb5a0cdfe88e..11af0ae7c313023a039c765c64dfeb269c8fb98b 100644 (file)
@@ -55,7 +55,6 @@ struct module {
 
        char *name;
        char *depends;
-       char *options;
 
        int size;
        int usage;
@@ -456,7 +455,7 @@ static int load_modprobe(void)
                todo = 0;
                avl_for_each_element(&modules, m, avl) {
                        if ((m->state == PROBE) && (!deps_available(m, 0))) {
-                               if (!insert_module(get_module_path(m->name), m->options)) {
+                               if (!insert_module(get_module_path(m->name), "")) {
                                        m->state = LOADED;
                                        m->error = 0;
                                        loaded++;
@@ -710,7 +709,6 @@ static int main_loader(int argc, char **argv)
                        if (!m || (m->state == LOADED))
                                continue;
 
-                       m->options = opts;
                        m->state = PROBE;
                        if (basename(gl.gl_pathv[j])[0] - '0' <= 9)
                                load_modprobe();